summaryrefslogtreecommitdiffstats
path: root/system/samhain/doinst.sh
diff options
context:
space:
mode:
author Richard Scott Smith2010-05-13 01:01:07 +0200
committer Robby Workman2010-05-13 01:01:07 +0200
commit720ef9f1923db7e4151335b6bd1b27a8afd5f274 (patch)
tree3f715dedb3eb744728aa67007862a0d96c211f1f /system/samhain/doinst.sh
parente2e6713f8cb15fc6fe7bde7ee06e68a72ea67c31 (diff)
downloadslackbuilds-720ef9f1923db7e4151335b6bd1b27a8afd5f274.tar.gz
system/samhain: Added to 13.0 repository
Diffstat (limited to 'system/samhain/doinst.sh')
-rw-r--r--system/samhain/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/system/samhain/doinst.sh b/system/samhain/doinst.sh
new file mode 100644
index 0000000000..3285ce0bcf
--- /dev/null
+++ b/system/samhain/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/samhainrc.new
+