#! /bin/sh # postinst script for osso-wlan # # see: dh_installdeb(1) #set -e case "$1" in install|upgrade|configure) # Debhelper invoked update-rc.d won't work without this chmod u+s /usr/sbin/wifiscand ;; abort-upgrade) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0