chsmack: add dereference option
[framework/security/smack.git] / debian / libsmack1.postinst
1 #!/bin/sh
2 # postinst script for libsmack1
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 case "$1" in
9     configure|abort-upgrade|abort-remove|abort-deconfigure)
10         test ! -d /smack && mkdir /smack
11         ;;
12     *)
13         echo "postinst called with unknown argument \`$1'" >&2
14         exit 1
15         ;;
16 esac
17
18 # dh_installdeb will replace this with shell code automatically
19 # generated by other debhelper scripts.
20
21 #DEBHELPER#
22
23 exit 0