Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | magnus | 1 | #! /bin/sh |
2 | # prerm script for lsh-utils |
||
3 | # |
||
4 | # see: dh_installdeb(1) |
||
5 | # |
||
6 | # |
||
7 | |||
8 | set -e |
||
9 | |||
10 | # summary of how this script can be called: |
||
11 | # * <prerm> `remove' |
||
12 | # * <old-prerm> `upgrade' <new-version> |
||
13 | # * <new-prerm> `failed-upgrade' <old-version> |
||
14 | # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version> |
||
15 | # * <deconfigured's-prerm> `deconfigure' `in-favour' |
||
16 | # <package-being-installed> <version> `removing' |
||
17 | # <conflicting-package> <version> |
||
18 | # for details, see http://www.debian.org/doc/debian-policy/ or |
||
19 | # the debian-policy package |
||
20 | |||
21 | case "$1" in |
||
22 | remove|upgrade|deconfigure) |
||
23 | update-alternatives --remove sexp-conv /usr/bin/sexp-conv.lsh-utils |
||
24 | ;; |
||
25 | failed-upgrade) |
||
26 | ;; |
||
27 | *) |
||
28 | echo "prerm called with unknown argument \`$1'" >&2 |
||
29 | exit 1 |
||
30 | ;; |
||
31 | esac |
||
32 | |||
33 | # dh_installdeb will replace this with shell code automatically |
||
34 | # generated by other debhelper scripts. |
||
35 | |||
36 | #DEBHELPER# |
||
37 | |||
38 | exit 0 |
||
39 | |||
40 |