summaryrefslogtreecommitdiffstats
path: root/network/kismet/doinst.sh
diff options
context:
space:
mode:
author Audrius Kažukauskas2010-06-30 03:35:12 +0200
committer Robby Workman2010-06-30 03:35:12 +0200
commit66ad06bd2f6fb9d1386367f41e408fbb65102d1d (patch)
tree8c722d7bed30c18658ead5d4013eb520bbe7a8a7 /network/kismet/doinst.sh
parentb8b1b9cccdedbcfbb792c8e80eae5720bcd924e3 (diff)
downloadslackbuilds-66ad06bd2f6fb9d1386367f41e408fbb65102d1d.tar.gz
network/kismet: Added (NIDS tool)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/kismet/doinst.sh')
-rw-r--r--network/kismet/doinst.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/network/kismet/doinst.sh b/network/kismet/doinst.sh
new file mode 100644
index 0000000000..f9e45084c6
--- /dev/null
+++ b/network/kismet/doinst.sh
@@ -0,0 +1,12 @@
+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...
+}
+