aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql12-server/pkg-install-server
blob: 94486e0dff98a458e8a7c2ca4c9dec025126caa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh

PATH=/bin:/usr/bin:/usr/sbin

backupwarning() {
cat <<EOF

  =========== BACKUP YOUR DATA! =============
  As always, backup your data before
  upgrading. If the upgrade leads to a higher
  major revision (e.g. 9.6 -> 10), a dump
  and restore of all databases is
  required. This is *NOT* done by the port!
  See https://www.postgresql.org/docs/current/upgrading.html
  ===========================================
EOF
}

case $2 in
PRE-INSTALL)
	backupwarning
	;;
esac