debian: Bump Standards-Version to 4.5.0
[grml-udev-config.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for grml-udev-config
3
4 set -e
5
6 case "$1" in
7     configure)
8     ;;
9
10     abort-upgrade|abort-remove|abort-deconfigure)
11     ;;
12
13     *)
14         echo "postinst called with unknown argument \`$1'" >&2
15         exit 1
16     ;;
17 esac
18
19 # dh_installdeb will replace this with shell code automatically
20 # generated by other debhelper scripts.
21
22 #DEBHELPER#
23
24 exit 0