diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-11-16 19:31:23 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-16 19:32:17 -0600 |
commit | e0bf49bf394e2f6e1b58ea4aad248b77ab73bba8 (patch) | |
tree | 671215721690b5a380025732d6524e6051d59b4e /network/zarafa-webaccess-ajax/doinst.sh | |
parent | bee8220ae65d162b4ff420f782d24f21b4f3c096 (diff) | |
download | slackbuilds-e0bf49bf394e2f6e1b58ea4aad248b77ab73bba8.tar.gz |
network/zarafa-webaccess-ajax: Removed (build failure)
Niels says he'll look into the zarafa stuff later.
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.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/network/zarafa-webaccess-ajax/doinst.sh b/network/zarafa-webaccess-ajax/doinst.sh deleted file mode 100644 index 19a6ff6ac8..0000000000 --- a/network/zarafa-webaccess-ajax/doinst.sh +++ /dev/null @@ -1,13 +0,0 @@ -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... -} - |