~derek-name/openvista-gtm-integration/bug818588-ovbackup_nice

« back to all changes in this revision

Viewing changes to packages/deb/Ubuntu/10.10/fis-gtm-5.3004a/debian/postrm

  • Committer: Jonathan Tai
  • Date: 2010-09-23 22:34:26 UTC
  • mfrom: (137.2.1 bug645637)
  • Revision ID: jon.tai@medsphere.com-20100923223426-dx2lc1nt9m3dzmfk
Merge bug 645637 - Support Ubuntu 10.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for fis-gtm-5.3004a
 
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 we were the last GT.M package on the system, remove the gtm group
 
25
        if [ ! -d /opt/lsb-gtm ]; then
 
26
            delgroup --quiet gtm || :
 
27
        fi
 
28
    ;;
 
29
 
 
30
    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
31
    ;;
 
32
 
 
33
    *)
 
34
        echo "postrm called with unknown argument \`$1'" >&2
 
35
        exit 1
 
36
    ;;
 
37
esac
 
38
 
 
39
# dh_installdeb will replace this with shell code automatically
 
40
# generated by other debhelper scripts.
 
41
 
 
42
#DEBHELPER#
 
43
 
 
44
exit 0