2000-04-16 20:43:19 +02:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PATH=/bin:/usr/sbin
|
|
|
|
|
2001-03-15 08:23:08 +01:00
|
|
|
DB_DIR=${PKG_PREFIX}/pgsql
|
2000-04-16 20:43:19 +02:00
|
|
|
|
2004-06-28 23:48:56 +02:00
|
|
|
backupwarning() { echo "
|
2004-08-31 15:46:52 +02:00
|
|
|
NOTICE: unlike most minor versions, upgrading from 7.4.1 to 7.4.x
|
|
|
|
*recommends* some updates to the pg_* system tables. Full
|
|
|
|
instructions for how to do this are included in the HISTORY file.
|
2004-03-30 13:14:24 +02:00
|
|
|
|
2003-01-04 02:10:15 +01:00
|
|
|
=========== BACKUP YOUR DATA! =============
|
|
|
|
As always, backup your data before
|
|
|
|
upgrading. If the upgrade leads to a higher
|
2003-12-04 13:00:49 +01:00
|
|
|
minor revision (e.g. 7.3.x -> 7.4), a dump
|
2003-01-04 02:10:15 +01:00
|
|
|
and restore of all databases is
|
|
|
|
required. This is *NOT* done by the port!
|
|
|
|
|
|
|
|
Press ctrl-C *now* if you need to pg_dump.
|
|
|
|
===========================================
|
2002-02-19 09:23:22 +01:00
|
|
|
"
|
2003-01-04 02:10:15 +01:00
|
|
|
sleep 5
|
|
|
|
}
|
|
|
|
|
|
|
|
case $2 in
|
|
|
|
PRE-INSTALL)
|
|
|
|
backupwarning
|
2000-04-16 20:43:19 +02:00
|
|
|
USER=pgsql
|
|
|
|
GROUP=${USER}
|
2001-03-15 08:23:08 +01:00
|
|
|
UID=70
|
2000-04-16 20:43:19 +02:00
|
|
|
GID=${UID}
|
|
|
|
|
|
|
|
if pw group show "${GROUP}" 2>/dev/null; then
|
|
|
|
echo "You already have a group \"${GROUP}\", so I will use it."
|
|
|
|
else
|
|
|
|
if pw groupadd ${GROUP} -g ${GID}; then
|
|
|
|
echo "Added group \"${GROUP}\"."
|
|
|
|
else
|
|
|
|
echo "Adding group \"${GROUP}\" failed..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if pw user show "${USER}" 2>/dev/null; then
|
|
|
|
echo "You already have a user \"${USER}\", so I will use it."
|
|
|
|
else
|
|
|
|
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
|
2001-01-30 08:27:00 +01:00
|
|
|
-d ${DB_DIR} -c "PostgreSQL Daemon"
|
2000-04-16 20:43:19 +02:00
|
|
|
then
|
|
|
|
echo "Added user \"${USER}\"."
|
|
|
|
else
|
|
|
|
echo "Adding user \"${USER}\" failed..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2001-04-21 13:34:34 +02:00
|
|
|
if ! [ -x ~pgsql ] ; then
|
|
|
|
mkdir -p ${DB_DIR}
|
|
|
|
chown pgsql:pgsql ${DB_DIR}
|
|
|
|
fi
|
2000-04-16 20:43:19 +02:00
|
|
|
;;
|
2001-03-15 08:23:08 +01:00
|
|
|
|
2003-01-04 02:10:15 +01:00
|
|
|
BACKUPWARNING)
|
|
|
|
backupwarning
|
|
|
|
;;
|
2000-04-16 20:43:19 +02:00
|
|
|
esac
|