debian
Rev | Line | |
---|
[632040d] | 1 | #!/bin/sh |
---|
| 2 | # postrm script for gutenbach-server |
---|
| 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 | if [ "$1" = "purge" ]; then |
---|
| 25 | if [ -d /usr/lib/gutenbach ]; then |
---|
| 26 | echo "Removing /usr/lib/gutenbach/..." >&2 |
---|
| 27 | rm -r /usr/lib/gutenbach |
---|
| 28 | fi |
---|
| 29 | |
---|
| 30 | if [ -e /usr/share/debconf/confmodule ]; then |
---|
| 31 | echo "Purging debconf database entries..." >&2 |
---|
| 32 | . /usr/share/debconf/confmodule |
---|
| 33 | db_purge |
---|
| 34 | fi |
---|
| 35 | fi |
---|
| 36 | |
---|
| 37 | inaudio=$(groups daemon | grep audio || true) |
---|
| 38 | if [ ! -z "$inaudio" ]; then |
---|
| 39 | deluser daemon audio |
---|
| 40 | fi |
---|
| 41 | ;; |
---|
| 42 | |
---|
| 43 | *) |
---|
| 44 | echo "postrm called with unknown argument \`$1'" >&2 |
---|
| 45 | exit 1 |
---|
| 46 | ;; |
---|
| 47 | esac |
---|
| 48 | |
---|
| 49 | # dh_installdeb will replace this with shell code automatically |
---|
| 50 | # generated by other debhelper scripts. |
---|
| 51 | |
---|
| 52 | #DEBHELPER# |
---|
| 53 | |
---|
| 54 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.