~ubuntu-branches/ubuntu/trusty/mongodb/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-27 15:40:16 UTC
  • Revision ID: package-import@ubuntu.com-20130827154016-xrafijucy0hpuxkd
Tags: 1:2.4.6-0ubuntu3
debian/*: Drop upstream debian changes accidentally merged in
1:2.4.6-0ubuntu1. 

Show diffs side-by-side

added added

removed removed

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