Maemo debianization.
[wpasupplicant] / debian / wpasupplicant.postinst
1 #!/bin/sh -e
2 # This script can be called in the following ways:
3 #
4 # After the package was installed:
5 #       <postinst> configure <old-version>
6 #
7 #
8 # If prerm fails during upgrade or fails on failed upgrade:
9 #       <old-postinst> abort-upgrade <new-version>
10 #
11 # If prerm fails during deconfiguration of a package:
12 #       <postinst> abort-deconfigure in-favour <new-package> <version>
13 #                  removing <old-package> <version>
14 #
15 # If prerm fails during replacement due to conflict:
16 #       <postinst> abort-remove in-favour <new-package> <version>
17
18 case "$1" in
19         configure)
20                 ;;
21         abort-upgrade|abort-deconfigure|abort-remove)
22                 ;;
23         *)
24                 echo "$0 called with unknown argument \`$1'" 1>&2
25                 exit 1
26                 ;;
27 esac
28
29 #DEBHELPER#
30 exit 0