diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-05-13 01:00:28 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 01:00:28 +0200 |
commit | d3b76092ae29069755f966094cfd930438094ec6 (patch) | |
tree | 16c08961eb02209406a7d2a6ee319f38205fd983 /network/zarafa/doinst.sh | |
parent | b6581c5eb3765ace3bfbcdb819bb6e95b285a979 (diff) | |
download | slackbuilds-d3b76092ae29069755f966094cfd930438094ec6.tar.gz |
network/zarafa: Added to 13.0 repository
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 |