bzr branch
http://bzr.recompile.se/loggerhead/mandos/trunk
505.1.13
by Teddy Hogeborn
Miscellaneous fixes prompted by lintian: |
1 |
#!/bin/sh
|
199
by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error. |
2 |
# prerm script for mandos
|
3 |
#
|
|
4 |
# see: dh_installdeb(1)
|
|
5 |
||
6 |
set -e |
|
7 |
||
8 |
# summary of how this script can be called:
|
|
275
by Teddy Hogeborn
* debian/mandos-client.postinst: Converted to Bourne shell. Also |
9 |
# * <prerm> 'remove'
|
10 |
# * <old-prerm> 'upgrade' <new-version>
|
|
11 |
# * <new-prerm> 'failed-upgrade' <old-version>
|
|
12 |
# * <conflictor's-prerm> 'remove' 'in-favour' <package> <new-version>
|
|
13 |
# * <deconfigured's-prerm> 'deconfigure' 'in-favour'
|
|
14 |
# <package-being-installed> <version> 'removing'
|
|
199
by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error. |
15 |
# <conflicting-package> <version>
|
16 |
# for details, see /usr/share/doc/packaging-manual/
|
|
17 |
||
18 |
case "$1" in |
|
19 |
remove|deconfigure) |
|
770
by Teddy Hogeborn
* debian/mandos.prerm: Don't run init script, use only invoke-rc.d. |
20 |
invoke-rc.d mandos stop || : |
199
by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error. |
21 |
;; |
22 |
upgrade|failed-upgrade) |
|
23 |
;; |
|
24 |
*) |
|
275
by Teddy Hogeborn
* debian/mandos-client.postinst: Converted to Bourne shell. Also |
25 |
echo "prerm called with unknown argument '$1'" >&2 |
199
by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error. |
26 |
exit 0 |
27 |
;; |
|
28 |
esac
|
|
29 |
||
30 |
#DEBHELPER#
|
|
31 |
||
32 |
exit 0 |