~ubuntu-branches/ubuntu/breezy/joystick/breezy

« back to all changes in this revision

Viewing changes to debian/joystick.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Edward Betts
  • Date: 2001-12-26 13:32:55 UTC
  • Revision ID: james.westby@ubuntu.com-20011226133255-ks0knlw3ln1jd4d4
Tags: 20010903-2
* debian/control: updated Standards-Version.
* debian/control: added version number to debhelper Build-Depends.
* debian/copyright: improved with more text from the GPL and a description
  of changes to the package.
* debian/template: German translation from Sebastian Feltel
  <sebastian@feltel.de>. (Closes: Bug#119939)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# joystick postrm
 
3
 
 
4
set -e
 
5
 
 
6
case "$1" in
 
7
    remove)
 
8
        ;;
 
9
    purge)
 
10
         update-rc.d joystick remove >/dev/null
 
11
        ;;
 
12
    upgrade)
 
13
        ;;
 
14
    failed-upgrade)
 
15
        ;;
 
16
    abort-install)
 
17
        ;;
 
18
    abort-upgrade)
 
19
        ;;
 
20
    disappear)
 
21
        ;;
 
22
    *)
 
23
        echo "postrm called with unexpected argument '$1', ignored."
 
24
        ;;
 
25
esac
 
26
 
 
27
#DEBHELPER#
 
28
 
 
29
exit 0