mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
5b11f47f0d
Introduce PostgreSQL-15 to the ports tree. Make version 15 the master port, and add plist parameter for the postgresql version. Release notes: https://www.postgresql.org/docs/devel/release.html
24 lines
482 B
Bash
24 lines
482 B
Bash
#! /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
|