/mandos/trunk

To get this branch, use:
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)
202 by Teddy Hogeborn
* clients.conf ([bar]/secfile): Do not imply armored format.
20
	if [ -x /etc/init.d/mandos ]; then
199 by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error.
21
		if [ -x /usr/sbin/invoke-rc.d ]; then
200 by Teddy Hogeborn
* Makefile: Put the init script before avahi-daemon.
22
			invoke-rc.d mandos stop
199 by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error.
23
		else
200 by Teddy Hogeborn
* Makefile: Put the init script before avahi-daemon.
24
			/etc/init.d/mandos stop
199 by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error.
25
		fi
26
	fi
27
	;;
28
    upgrade|failed-upgrade)
29
        ;;
30
    *)
275 by Teddy Hogeborn
* debian/mandos-client.postinst: Converted to Bourne shell. Also
31
        echo "prerm called with unknown argument '$1'" >&2
199 by Teddy Hogeborn
* Makefile: Bug fix: fix syntax error.
32
        exit 0
33
    ;;
34
esac
35
36
#DEBHELPER#
37
38
exit 0