diff options
Diffstat (limited to 'system/postgresql/doinst.sh')
-rw-r--r-- | system/postgresql/doinst.sh | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/system/postgresql/doinst.sh b/system/postgresql/doinst.sh index 203ba5aa89a8..d9f098a6ff75 100644 --- a/system/postgresql/doinst.sh +++ b/system/postgresql/doinst.sh @@ -10,13 +10,17 @@ config() { # Otherwise, we leave the .new copy for the admin to consider... } -# Keep same perms on rc.postgresql.new: -if [ -e etc/rc.d/rc.postgresql ]; then - cp -a etc/rc.d/rc.postgresql etc/rc.d/rc.postgresql.new.incoming - cat etc/rc.d/rc.postgresql.new > etc/rc.d/rc.postgresql.new.incoming - mv etc/rc.d/rc.postgresql.new.incoming etc/rc.d/rc.postgresql.new -fi +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 +} -config etc/rc.d/rc.postgresql.new +preserve_perms etc/rc.d/rc.postgresql.new config etc/logrotate.d/postgresql.new |