diff options
author | Alan Hicks <alan@lizella.net> | 2010-05-11 22:25:11 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:25:11 +0200 |
commit | 0ddbdbac181797afac0d0f25e0d2689ec804a498 (patch) | |
tree | 20f5d2ca1af50d7fddd58ca912524f601b148e3d /network/dovecot/doinst.sh | |
parent | d11b5ffd117b05f5f626963dff7a4f276a3af741 (diff) |
network/dovecot: Updated for version 1.1.3
Diffstat (limited to 'network/dovecot/doinst.sh')
-rw-r--r-- | network/dovecot/doinst.sh | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/network/dovecot/doinst.sh b/network/dovecot/doinst.sh index 1142a484421c..088bd4ecc8d3 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 + |