~mathiaz/+junk/ceph-new-pkg-review

« back to all changes in this revision

Viewing changes to debian/libceph1.postrm

  • Committer: Mathias Gug
  • Date: 2010-07-29 03:10:42 UTC
  • Revision ID: mathias.gug@canonical.com-20100729031042-n9n8kky962qb4onb
Import ceph_0.21-0ubuntu1 from https://launchpad.net/~clint-fewbar/+archive/ceph/+packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for ceph
 
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
    remove)
 
24
        ldconfig
 
25
    ;;
 
26
 
 
27
    purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
28
    ;;
 
29
 
 
30
    *)
 
31
        echo "postrm called with unknown argument \`$1'" >&2
 
32
        exit 1
 
33
    ;;
 
34
esac
 
35
 
 
36
# dh_installdeb will replace this with shell code automatically
 
37
# generated by other debhelper scripts.
 
38
 
 
39
#DEBHELPER#
 
40
 
 
41
exit 0
 
42
 
 
43