summaryrefslogtreecommitdiffstats
path: root/network/suricata/doinst.sh
blob: d74b5bd7712f757cdb2821b4c3ddbbccd362dbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    rm $NEW
  fi
}

CONFIGS="classification.config reference.config suricata.yaml threshold.config"
for file in $CONFIGS; do
    config etc/suricata/${file}.new
done