summaryrefslogtreecommitdiffstats
path: root/misc/htscanner/doinst.sh
diff options
context:
space:
mode:
author Menno Duursma2010-05-13 00:59:24 +0200
committer Robby Workman2010-05-13 00:59:24 +0200
commitdc157fba669760a567f41ee57960c038f2d82fbc (patch)
tree0ad8b2ef521e2fd36649634d8dea99ad24035b30 /misc/htscanner/doinst.sh
parent162658534bcc22ca606c48838f5482d1753a1a44 (diff)
downloadslackbuilds-dc157fba669760a567f41ee57960c038f2d82fbc.tar.gz
misc/htscanner: Added to 13.0 repository
Diffstat (limited to 'misc/htscanner/doinst.sh')
-rw-r--r--misc/htscanner/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/htscanner/doinst.sh b/misc/htscanner/doinst.sh
new file mode 100644
index 0000000000..7f5007cc76
--- /dev/null
+++ b/misc/htscanner/doinst.sh
@@ -0,0 +1,15 @@
+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
+