~ubuntu-branches/ubuntu/quantal/dh-make/quantal

« back to all changes in this revision

Viewing changes to lib/debian/postrm.ex

  • Committer: Bazaar Package Importer
  • Author(s): Craig Small
  • Date: 2006-11-01 08:30:21 UTC
  • mfrom: (1.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20061101083021-mkdu8suq5t891dh7
* Stopped shiiping the kde examples (Closes: #372287)
* debiank/rules is executable (Closes: #372768)
* de-hypened man page (Closes: #372777)
* templates changed to use compat level 5 (Closes: #370468)
* Default priority extra in templates (Closes: #373603)
* MAKE install var=xx => MAKE var=xx install (Closes: #374175)
* Consitent formatting of maintainer script (Closes: #370488)
* Kernel module name consistent (Closes: #384085)
* bzip2 path was changed (Closes: #377523)
* fixes for cdbs template (Closes: #382042)
* Now supports ~ in upstream version number (Closes: #387465)
* fixed force-reload behaviour of init.d template to follow LSB
  (Closes: #377292)
* README.Debian the same author line as in changelog (Closes: #379773)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
 
1
#!/bin/sh
2
2
# postrm script for #PACKAGE#
3
3
#
4
4
# see: dh_installdeb(1)
13
13
#        * <new-postrm> `abort-install'
14
14
#        * <new-postrm> `abort-install' <old-version>
15
15
#        * <new-postrm> `abort-upgrade' <old-version>
16
 
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
 
16
#        * <disappearer's-postrm> `disappear' <overwriter>
 
17
#          <overwriter-version>
17
18
# for details, see http://www.debian.org/doc/debian-policy/ or
18
19
# the debian-policy package
19
20
 
20
21
 
21
22
case "$1" in
22
 
       purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
23
 
 
24
 
 
25
 
        ;;
 
23
    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
24
    ;;
26
25
 
27
26
    *)
28
27
        echo "postrm called with unknown argument \`$1'" >&2
29
28
        exit 1
30
 
 
 
29
    ;;
31
30
esac
32
31
 
33
32
# dh_installdeb will replace this with shell code automatically
36
35
#DEBHELPER#
37
36
 
38
37
exit 0
 
38
 
 
39