update host name
[cl-base64.git] / debian / prerm
1 #! /bin/sh
2 set -e
3
4 LISP_PKG=cl-base64
5
6 case "$1" in
7     remove|upgrade|deconfigure)
8         unregister-common-lisp-source ${LISP_PKG}
9         ;;
10     failed-upgrade)
11         ;;
12     *)
13         echo "prerm 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
24
25