diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-06-12 15:36:19 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-12 22:14:27 -0500 |
commit | 9cdde68e969edc7714bde53bf82b8a86f57700ca (patch) | |
tree | dfa8cb0278a316ef853d7b7464049a686d8c665d /network/zarafa/doinst.sh | |
parent | 8ccce2733043f24f7fb87f6c1fe47f8674b24b22 (diff) | |
download | slackbuilds-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.sh | 16 |
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 |