root/alternc-changepass/branches/r1/debian/prerm.template

Revision 1088, 333 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 prerm
4 # Benjamin Sonntag <benjamin@alternc.org>
5
6 case "$1" in
7 upgrade)
8     new=$2                  # get new version
9     ;;
10
11 deconfigure)
12     ;;
13
14 remove)
15        
16     ;;
17
18 failed-upgrade)
19     ;;
20
21 *)
22     echo "prerm called with unknown argument '$1'" >&2
23     exit 1
24     ;;
25
26 esac
27
28 #DEBHELPER#
29
30 exit 0
Note: See TracBrowser for help on using the browser.