aboutsummaryrefslogtreecommitdiff
path: root/net/analyzer/snort/doinst.sh
blob: 5e142bb43047703dcb54d0b62328220e56eb9999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# got it from http://www.slacky.it/repository/slackware/slackware-11.0/network/snort/2.6.1.3/src/doinst.sh

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/classification.config.new
config etc/gen-msg.map.new
config etc/generators.new
config etc/reference.config.new
config etc/sid.new
config etc/sid-msg.map.new
config etc/snort.conf.new
config etc/threshold.conf.new
config etc/unicode.map.new