~derek-name/openvista-gtm-integration/bug887649

« back to all changes in this revision

Viewing changes to packages/deb/Ubuntu/9.10/fis-gtm-5.4000a/debian/postrm

  • Committer: Derek Veit
  • Date: 2011-09-29 23:55:44 UTC
  • mfrom: (149.1.6 bug834215)
  • Revision ID: derek.veit@medsphere.com-20110929235544-qqib8ojo7tlvcph0
Merge bug 834215 - Add support for Ubuntu 11.04 "Natty Narwhal".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# postrm script for fis-gtm-5.4000a
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