summaryrefslogtreecommitdiffstats
path: root/network/p0f/doinst.sh
diff options
context:
space:
mode:
author David Spencer <nobbutl@yahoo.co.uk>2010-05-11 20:01:41 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-11 20:01:41 +0200
commita9c294f0eab8cacb557047512ab271e0b2375517 (patch)
tree0094139348a2811b11739d78934cbbd8c07b82ad /network/p0f/doinst.sh
parent5a0ec81466e6ea6b8dfbf06b996438c9fc47de3d (diff)
downloadslackbuilds-a9c294f0eab8cacb557047512ab271e0b2375517.tar.gz
slackbuilds-a9c294f0eab8cacb557047512ab271e0b2375517.tar.xz
network/p0f: Added to 12.0 repository
Diffstat (limited to 'network/p0f/doinst.sh')
-rw-r--r--network/p0f/doinst.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/network/p0f/doinst.sh b/network/p0f/doinst.sh
new file mode 100644
index 0000000000..0959ef448f
--- /dev/null
+++ b/network/p0f/doinst.sh
@@ -0,0 +1,20 @@
+#!/bin/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/p0f/p0f.fp.new
+config etc/p0f/p0fa.fp.new
+config etc/p0f/p0fo.fp.new
+config etc/p0f/p0fr.fp.new
+