From acbaed2e23d9063fdc62b91ce436ed683a51af37 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Wed, 17 Dec 2014 14:58:47 +0700 Subject: network/suricata: Updated for version 2.0.5. Signed-off-by: Willy Sudiarto Raharjo --- network/suricata/doinst.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'network/suricata/doinst.sh') diff --git a/network/suricata/doinst.sh b/network/suricata/doinst.sh index c53b980178..d74b5bd771 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 -- cgit v1.2.3