~nova-coresec/ubuntu/maverick/libvirt/nova-ppa

« back to all changes in this revision

Viewing changes to debian/libvirt-bin.postrm

Tags: 0.4.4-3
* upload to unstable
* [96c6727] add /var/cache/libvirt needed by qemuDriver for temporary
  storage
* [794f95c] bump standards version to 3.8.0
* [05184af] add README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for #PACKAGE#
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <postrm> `remove'
 
10
#        * <postrm> `purge'
 
11
#        * <old-postrm> `upgrade' <new-version>
 
12
#        * <new-postrm> `failed-upgrade' <old-version>
 
13
#        * <new-postrm> `abort-install'
 
14
#        * <new-postrm> `abort-install' <old-version>
 
15
#        * <new-postrm> `abort-upgrade' <old-version>
 
16
#        * <disappearer's-postrm> `disappear' <overwriter>
 
17
#          <overwriter-version>
 
18
# for details, see http://www.debian.org/doc/debian-policy/ or
 
19
# the debian-policy package
 
20
 
 
21
 
 
22
case "$1" in
 
23
    purge)
 
24
        if getent group libvirt >/dev/null; then
 
25
                delgroup libvirt || true
 
26
        fi
 
27
        
 
28
    ;;
 
29
    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
30
    ;;
 
31
 
 
32
    *)
 
33
        echo "postrm called with unknown argument \`$1'" >&2
 
34
        exit 1
 
35
    ;;
 
36
esac
 
37
 
 
38
# dh_installdeb will replace this with shell code automatically
 
39
# generated by other debhelper scripts.
 
40
 
 
41
#DEBHELPER#
 
42
 
 
43
exit 0
 
44
 
 
45