summaryrefslogtreecommitdiffstats
path: root/network/dovecot/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'network/dovecot/doinst.sh')
-rw-r--r--network/dovecot/doinst.sh17
1 files changed, 12 insertions, 5 deletions
diff --git a/network/dovecot/doinst.sh b/network/dovecot/doinst.sh
index 1142a48442..088bd4ecc8 100644
--- a/network/dovecot/doinst.sh
+++ b/network/dovecot/doinst.sh
@@ -1,15 +1,22 @@
-#!/bin/sh
-
config() {
NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
-config etc/dovecot-example.conf.new
+# Keep same perms on rc.dovecot.new:
+if [ -e etc/rc.d/rc.dovecot ]; then
+ cp -a etc/rc.d/rc.dovecot etc/rc.d/rc.dovecot.new.incoming
+ cat etc/rc.d/rc.dovecot.new > etc/rc.d/rc.dovecot.new.incoming
+ mv etc/rc.d/rc.dovecot.new.incoming etc/rc.d/rc.dovecot.new
+fi
+
+config etc/rc.d/rc.dovecot.new
+