summaryrefslogtreecommitdiffstats
path: root/network/zarafa-webaccess-ajax/doinst.sh
diff options
context:
space:
mode:
author Niels Horn2010-06-12 22:37:15 +0200
committer Robby Workman2010-06-13 05:14:27 +0200
commit29c2f4c37318587e817a9fe616a97b9d1466d95f (patch)
tree049fac317fb2675658fdb3df5e1a59bcaa572dab /network/zarafa-webaccess-ajax/doinst.sh
parent9cdde68e969edc7714bde53bf82b8a86f57700ca (diff)
downloadslackbuilds-29c2f4c37318587e817a9fe616a97b9d1466d95f.tar.gz
network/zarafa-webaccess-ajax: Added (Zarafa web access module)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/zarafa-webaccess-ajax/doinst.sh')
-rw-r--r--network/zarafa-webaccess-ajax/doinst.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/network/zarafa-webaccess-ajax/doinst.sh b/network/zarafa-webaccess-ajax/doinst.sh
new file mode 100644
index 0000000000..19a6ff6ac8
--- /dev/null
+++ b/network/zarafa-webaccess-ajax/doinst.sh
@@ -0,0 +1,13 @@
+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...
+}
+