diff options
author | Arief JR <4ipxxx@gmail.com> | 2015-10-25 08:25:29 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-10-25 10:04:45 +0700 |
commit | e658f6c341e1e6c67af5166715a18530bb620ef3 (patch) | |
tree | 99f47c8d2e26bc3971e5eedbe13f71d0980df1d6 /network/malheur/doinst.sh | |
parent | c24cab928a20ead4d3430532f5346c16425cd187 (diff) | |
download | slackbuilds-e658f6c341e1e6c67af5166715a18530bb620ef3.tar.gz |
network/malheur: Added (automatic analysis of malware behaviour).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/malheur/doinst.sh')
-rw-r--r-- | network/malheur/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/network/malheur/doinst.sh b/network/malheur/doinst.sh new file mode 100644 index 0000000000..4d8216e62c --- /dev/null +++ b/network/malheur/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/malheur.cfg.new |