b23d2e8626
bsd.pkg.install.mk: * Remove old DEINSTALL/INSTALL scripts. * Move some text printed at POST-INSTALL time into the MESSAGE file. * Adjust rc.d scripts to respect rc.conf settings, so that the script may be directly copied into /etc/rc.d.
20 lines
682 B
Text
20 lines
682 B
Text
# $NetBSD: DEINSTALL,v 1.2 2001/11/19 16:23:08 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
|
|
If you intend to upgrade your PostgreSQL installation, you may need to
|
|
perform a dump-and-restore to move your current databases into the newer
|
|
PostgreSQL installation. Please dump your databases *prior* to installing
|
|
the new PostgreSQL.
|
|
|
|
Please see the Backup and Restore section of the PostgreSQL Administrator's
|
|
Guide (databases/postgresql-docs) for complete information on how to
|
|
perform the databases dump.
|
|
|
|
===========================================================================
|
|
EOF
|
|
;;
|
|
esac
|