2010-05-11 21:18:43 +08:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
2010-05-12 04:27:00 +08:00
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
2010-05-11 21:18:43 +08:00
|
|
|
# If there's no config file by that name, mv it over:
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
2010-05-12 04:27:00 +08:00
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
|
2010-05-11 21:18:43 +08:00
|
|
|
rm $NEW
|
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
|
|
|
|
2011-10-08 20:45:11 +08:00
|
|
|
preserve_perms() {
|
|
|
|
NEW="$1"
|
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
|
|
if [ -e $OLD ]; then
|
|
|
|
cp -a $OLD ${NEW}.incoming
|
|
|
|
cat $NEW > ${NEW}.incoming
|
|
|
|
mv ${NEW}.incoming $NEW
|
|
|
|
fi
|
|
|
|
config $NEW
|
|
|
|
}
|
2010-05-12 04:27:00 +08:00
|
|
|
|
2011-10-08 20:45:11 +08:00
|
|
|
preserve_perms etc/rc.d/rc.postgresql.new
|
2010-05-11 21:18:43 +08:00
|
|
|
config etc/logrotate.d/postgresql.new
|
2010-05-12 04:27:00 +08:00
|
|
|
|
2013-10-26 13:40:32 +08:00
|
|
|
# Create default program symlinks in /usr/bin
|
|
|
|
(
|
|
|
|
cd usr/bin
|
2014-01-07 01:19:29 +08:00
|
|
|
for pg_binary in ../lib@LIBDIRSUFFIX@/@PRGNAM@/@PG_VERSION@/bin/*; do
|
2013-10-26 13:40:32 +08:00
|
|
|
pg_prog=$(basename $pg_binary)
|
|
|
|
if [ -L $pg_prog ]; then
|
|
|
|
ln -sf $pg_binary
|
|
|
|
elif [ ! -e $pg_prog ]; then
|
|
|
|
# make sure we don't overwrite actual binaries
|
|
|
|
ln -s $pg_binary
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
|