summaryrefslogtreecommitdiffstats
path: root/network/zarafa/doinst.sh
diff options
context:
space:
mode:
author Niels Horn2010-06-12 22:36:19 +0200
committer Robby Workman2010-06-13 05:14:27 +0200
commit9cdde68e969edc7714bde53bf82b8a86f57700ca (patch)
treedfa8cb0278a316ef853d7b7464049a686d8c665d /network/zarafa/doinst.sh
parent8ccce2733043f24f7fb87f6c1fe47f8674b24b22 (diff)
downloadslackbuilds-9cdde68e969edc7714bde53bf82b8a86f57700ca.tar.gz
network/zarafa: Added (MS Exchange Server replacement)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/zarafa/doinst.sh')
-rw-r--r--network/zarafa/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/network/zarafa/doinst.sh b/network/zarafa/doinst.sh
new file mode 100644
index 0000000000..a7a54d81e2
--- /dev/null
+++ b/network/zarafa/doinst.sh
@@ -0,0 +1,16 @@
+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...
+}
+
+for cnf in etc/zarafa/*.cfg.new; do
+ config $cnf
+done