root/alternc-changepass/tags/v1/debian/postinst

Revision 1088, 482 bytes (checked in by anonymous, 4 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1 #!/bin/sh -e
2
3 # Debian alternc-changepass postinst
4 # Benjamin Sonntag <benjamin@alternc.org>
5
6
7 case "$1" in
8 configure)
9
10     db_get alternc-changepass/warning_squirrelmail_plugin
11
12     ;;
13
14 abort-upgrade)
15     exit 0
16     ;;
17
18 abort-remove|abort-deconfigure)
19     exit 0
20     ;;
21
22 *)
23     echo "postinst called with unknown argument '$1'" >&2
24     exit 1
25     ;;
26 esac
27
28 # dh_installdeb will replace this with shell code automatically
29 # generated by other debhelper scripts.
30
31 #DEBHELPER#
32
33 exit 0
Note: See TracBrowser for help on using the browser.