summaryrefslogtreecommitdiffstats
path: root/network/exim/doinst.sh
diff options
context:
space:
mode:
author Thales A. Tsailas2010-05-12 23:32:07 +0200
committer Michiel van Wessem2010-05-12 23:32:07 +0200
commitaf3d39d47ade672310f0914a98343274d0842336 (patch)
treeb24c92948b392ca7ff2fe574df6179c8f0a3c19a /network/exim/doinst.sh
parent54834c8b7d5e6825e4d1ab1a763071d5815a22e5 (diff)
downloadslackbuilds-af3d39d47ade672310f0914a98343274d0842336.tar.gz
network/exim: Added to 12.2 repository
Diffstat (limited to 'network/exim/doinst.sh')
-rw-r--r--network/exim/doinst.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/network/exim/doinst.sh b/network/exim/doinst.sh
new file mode 100644
index 0000000000..5e76fa1af3
--- /dev/null
+++ b/network/exim/doinst.sh
@@ -0,0 +1,21 @@
+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...
+}
+
+# Keep same perms on rc.exim.new:
+if [ -e etc/rc.d/rc.exim ]; then
+ cp -a etc/rc.d/rc.exim etc/rc.d/rc.exim.new.incoming
+ cat etc/rc.d/rc.exim.new > etc/rc.d/rc.exim.new.incoming
+ mv etc/rc.d/rc.exim.new.incoming etc/rc.d/rc.exim.new
+fi
+
+config etc/rc.d/rc.exim.new
+config etc/exim/exim.conf.new