diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-12 17:43:27 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:43:27 +0200 |
commit | 8e73901373ae175d7f613d75f418884902107c75 (patch) | |
tree | 23f43d8ddc21f2c2f44398cd869aee46f2d125c4 /network/htscanner/doinst.sh | |
parent | 4435bd3842ccfb0a803839ad7111b8ae9efa4278 (diff) |
network/htscanner: Updated for version 0.9.0
Diffstat (limited to 'network/htscanner/doinst.sh')
-rw-r--r-- | network/htscanner/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/network/htscanner/doinst.sh b/network/htscanner/doinst.sh new file mode 100644 index 0000000000000..f44995e60a47d --- /dev/null +++ b/network/htscanner/doinst.sh @@ -0,0 +1,14 @@ +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... +} + +config etc/php/htscanner.ini.new |