~ahasenack/landscape-client/landscape-client-11.02-0ubuntu0.8.04.1

« back to all changes in this revision

Viewing changes to debian/landscape-client.prerm

  • Committer: Andreas Hasenack
  • Date: 2011-05-05 14:12:15 UTC
  • Revision ID: andreas@canonical.com-20110505141215-5ymuyyh5es9pwa6p
Added hardy files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# prerm script for landscape-client
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
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'
 
15
#          <conflicting-package> <version>
 
16
# for details, see http://www.debian.org/doc/debian-policy/ or
 
17
# the debian-policy package
 
18
 
 
19
 
 
20
case "$1" in
 
21
    remove|upgrade|deconfigure)
 
22
 
 
23
        # Remove statoverride for smart-update
 
24
        smart_update=/usr/lib/landscape/smart-update
 
25
        if dpkg-statoverride --list $smart_update >/dev/null 2>&1; then
 
26
            dpkg-statoverride --remove $smart_update
 
27
        fi
 
28
 
 
29
    ;;
 
30
 
 
31
    failed-upgrade)
 
32
    ;;
 
33
 
 
34
    *)
 
35
        echo "prerm called with unknown argument \`$1'" >&2
 
36
        exit 1
 
37
    ;;
 
38
esac
 
39
 
 
40
# dh_installdeb will replace this with shell code automatically
 
41
# generated by other debhelper scripts.
 
42
 
 
43
#DEBHELPER#
 
44
 
 
45
exit 0