/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/mandos.prerm

  • Committer: Teddy Hogeborn
  • Date: 2008-12-15 02:33:36 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081215023336-x319cdr0ycvrzp33
* mandos (_datetime_to_dbus_struct): Renamed to "_datetime_to_dbus";
                                     return a dbus.String containing
                                     an ISO 8601 formatted date+time.
  (Client.__init__): Renamed keyword argument "stop_hook" to
                     "disabled_hook".  All callers changed.
  (Client.started): Renamed to "enabled"; all users changed.
  (Client.last_started): Renamed to "last_enabled"; all users changed.
  (Client.stop_hook): Renamed to "disabled_hook"; all users changed.
  (Client.stop_initiator_tag): Renamed to "disable_initiator_tag"; all
                               users changed.
  (Client.start): Renamed to "enable".  All callers changed.
  (Client.stop): Renamed to "disable".  All callers changed.
  (Client.GetAllProperties): Property "last_started" renamed to
                             "last_enabled" and "started" renamed to
                             "enabled".
  (Client.Start): Renamed to "Enable".
  (Client.Stop): Renamed to "Disable".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
 
1
#! /bin/sh
2
2
# prerm script for mandos
3
3
#
4
4
# see: dh_installdeb(1)
6
6
set -e
7
7
 
8
8
# summary of how this script can be called:
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'
 
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'
15
15
#          <conflicting-package> <version>
16
16
# for details, see /usr/share/doc/packaging-manual/
17
17
 
18
18
case "$1" in
19
19
    remove|deconfigure)
20
 
        invoke-rc.d mandos stop || :
 
20
        if [ -x /etc/init.d/mandos ]; then
 
21
                if [ -x /usr/sbin/invoke-rc.d ]; then
 
22
                        invoke-rc.d mandos stop
 
23
                else
 
24
                        /etc/init.d/mandos stop
 
25
                fi
 
26
        fi
21
27
        ;;
22
28
    upgrade|failed-upgrade)
23
29
        ;;
24
30
    *)
25
 
        echo "prerm called with unknown argument '$1'" >&2
 
31
        echo "prerm called with unknown argument \`$1'" >&2
26
32
        exit 0
27
33
    ;;
28
34
esac