diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-12-17 14:58:47 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-12-17 14:58:47 +0700 |
commit | acbaed2e23d9063fdc62b91ce436ed683a51af37 (patch) | |
tree | 1f593b2ab154f21828d36dbd23d75ef05a744d1a /network/suricata/doinst.sh | |
parent | d46d4e3b4879c7980414b406b3b8d6d788acc81f (diff) |
network/suricata: Updated for version 2.0.5.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/suricata/doinst.sh')
-rw-r--r-- | network/suricata/doinst.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/network/suricata/doinst.sh b/network/suricata/doinst.sh index c53b980178be..d74b5bd7712f 100644 --- a/network/suricata/doinst.sh +++ b/network/suricata/doinst.sh @@ -1,17 +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/suricata/classification.config.new -config etc/suricata/reference.config.new -config etc/suricata/suricata.yaml.new -config etc/suricata/threshold.config.new +CONFIGS="classification.config reference.config suricata.yaml threshold.config" +for file in $CONFIGS; do + config etc/suricata/${file}.new +done |