diff options
Diffstat (limited to 'network/kismet/doinst.sh')
-rw-r--r-- | network/kismet/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/network/kismet/doinst.sh b/network/kismet/doinst.sh new file mode 100644 index 0000000000..ad14c9cfab --- /dev/null +++ b/network/kismet/doinst.sh @@ -0,0 +1,19 @@ +#!/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/kismet/kismet.conf.new +config etc/kismet/kismet_ui.conf.new +config etc/kismet/kismet_drone.conf.new +config etc/kismet/client_manuf.new +config etc/kismet/ap_manuf.new |