Revision 25653,
1.0 KB
checked in by jdreed, 12 years ago
(diff) |
In dotfiles:
* Pass --no-start to dh_installinit (Trac: #1084)
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[23595] | 1 | #!/bin/sh |
---|
[24529] | 2 | # prerm script for debathena-dotfiles |
---|
[23595] | 3 | # |
---|
| 4 | # see: dh_installdeb(1) |
---|
| 5 | |
---|
| 6 | set -e |
---|
| 7 | |
---|
| 8 | # summary of how this script can be called: |
---|
| 9 | # * <prerm> `remove' |
---|
| 10 | # * <old-prerm> `upgrade' <new-version> |
---|
| 11 | # * <new-prerm> `failed-upgrade' <old-version> |
---|
| 12 | # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version> |
---|
| 13 | # * <deconfigured's-prerm> `deconfigure' `in-favour' |
---|
| 14 | # <package-being-installed> <version> `removing' |
---|
| 15 | # <conflicting-package> <version> |
---|
| 16 | # for details, see http://www.debian.org/doc/debian-policy/ or |
---|
| 17 | # the debian-policy package |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | case "$1" in |
---|
| 21 | remove) |
---|
| 22 | remove-shell /bin/athena/bash /bin/athena/tcsh |
---|
[25653] | 23 | if [ -x "/etc/init.d/debathena-dotfiles" ]; then |
---|
| 24 | invoke-rc.d debathena-dotfiles stop || exit $? |
---|
| 25 | fi |
---|
[23595] | 26 | ;; |
---|
| 27 | |
---|
| 28 | upgrade|deconfigure) |
---|
| 29 | ;; |
---|
| 30 | |
---|
| 31 | failed-upgrade) |
---|
| 32 | ;; |
---|
| 33 | |
---|
| 34 | *) |
---|
| 35 | echo "prerm called with unknown argument \`$1'" >&2 |
---|
| 36 | exit 1 |
---|
| 37 | ;; |
---|
| 38 | esac |
---|
| 39 | |
---|
| 40 | # dh_installdeb will replace this with shell code automatically |
---|
| 41 | # generated by other debhelper scripts. |
---|
| 42 | |
---|
| 43 | #DEBHELPER# |
---|
| 44 | |
---|
| 45 | exit 0 |
---|
| 46 | |
---|
| 47 | |
---|
Note: See
TracBrowser
for help on using the repository browser.