summaryrefslogtreecommitdiffstats
path: root/network/kismet/doinst.sh
blob: 358655b439b6081be2634b5700fd13b35ea460a5 (plain)
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