From b385046138ba68d222573585879492193726affb Mon Sep 17 00:00:00 2001 From: mario Date: Tue, 19 Oct 2010 20:09:25 +0100 Subject: network/cyrus-imapd: Added. (scalable enterprise mail system). Signed-off-by: Michiel van Wessem --- network/cyrus-imapd/doinst.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 network/cyrus-imapd/doinst.sh (limited to 'network/cyrus-imapd/doinst.sh') diff --git a/network/cyrus-imapd/doinst.sh b/network/cyrus-imapd/doinst.sh new file mode 100644 index 0000000000..ec38d4e521 --- /dev/null +++ b/network/cyrus-imapd/doinst.sh @@ -0,0 +1,27 @@ +config() { + NEW="$1" + 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 + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +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 +} + +preserve_perms etc/rc.d/rc.cyrus-imapd.new +config etc/cyrus.conf.new +config etc/imapd.conf.new -- cgit v1.2.3