diff options
author | Richard Scott Smith <pilbender@gmail.com> | 2010-05-13 01:01:07 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 01:01:07 +0200 |
commit | 720ef9f1923db7e4151335b6bd1b27a8afd5f274 (patch) | |
tree | 3f715dedb3eb744728aa67007862a0d96c211f1f /system/samhain/doinst.sh | |
parent | e2e6713f8cb15fc6fe7bde7ee06e68a72ea67c31 (diff) | |
download | slackbuilds-720ef9f1923db7e4151335b6bd1b27a8afd5f274.tar.gz |
system/samhain: Added to 13.0 repository
Diffstat (limited to 'system/samhain/doinst.sh')
-rw-r--r-- | system/samhain/doinst.sh | 15 |
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 + |