Include a configuration setting to specify the interval among wireless scans
[wifihood] / wifiscand / debian / postinst
1 #! /bin/sh
2 # postinst script for osso-wlan
3 #
4 # see: dh_installdeb(1)
5
6 #set -e
7
8 case "$1" in
9     install|upgrade|configure)
10         # Debhelper invoked update-rc.d won't work without this
11         chmod u+s /usr/sbin/wifiscand
12         ;;
13
14     abort-upgrade)
15         ;;
16
17     *)
18         echo "postinst called with unknown argument \`$1'" >&2
19         exit 1
20         ;;
21 esac
22
23 # dh_installdeb will replace this with shell code automatically
24 # generated by other debhelper scripts.
25
26 #DEBHELPER#
27
28 exit 0