From 9cdde68e969edc7714bde53bf82b8a86f57700ca Mon Sep 17 00:00:00 2001 From: Niels Horn Date: Sat, 12 Jun 2010 15:36:19 -0500 Subject: network/zarafa: Added (MS Exchange Server replacement) Signed-off-by: Robby Workman --- network/zarafa/doinst.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 network/zarafa/doinst.sh (limited to 'network/zarafa/doinst.sh') 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 -- cgit v1.2.3