slackbuilds_ponce/network/zarafa/doinst.sh
Niels Horn 9cdde68e96 network/zarafa: Added (MS Exchange Server replacement)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2010-06-12 22:14:27 -05:00

16 lines
403 B
Bash

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