summaryrefslogtreecommitdiff
path: root/network/exim/doinst.sh
diff options
context:
space:
mode:
authorThomas Morper <thomas@beingboiled.info>2010-04-07 22:30:26 -0500
committerRobby Workman <rworkman@slackbuilds.org>2010-05-15 10:24:20 +0200
commitffd97168269b59ebcd2b1697cbeedc8fa1329cec (patch)
tree94dfb67ecd0bac515f5ab185684fa0ce7055ad0f /network/exim/doinst.sh
parent669ea352d9812695a8921a735bb0ab63ea32414d (diff)
downloadslackbuilds-ffd97168269b59ebcd2b1697cbeedc8fa1329cec.tar.gz
network/exim: Added. exim is a sendmail replacement.
Diffstat (limited to 'network/exim/doinst.sh')
-rw-r--r--network/exim/doinst.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/network/exim/doinst.sh b/network/exim/doinst.sh
new file mode 100644
index 0000000000..4e583ff92a
--- /dev/null
+++ b/network/exim/doinst.sh
@@ -0,0 +1,28 @@
+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}
+}
+
+config etc/cron.daily/exim.new
+config etc/logrotate.d/exim.new
+preserve_perms etc/rc.d/rc.exim.new
+