#!/bin/sh # postrm script for gutenbach # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) if [ "$1" = "purge" ]; then if [ -d /usr/lib/gutenbach ]; then echo "Removing /usr/lib/gutenbach/..." >&2 rm -r /usr/lib/gutenbach fi if [ -e /usr/share/debconf/confmodule ]; then echo "Purging debconf database entries..." >&2 . /usr/share/debconf/confmodule db_purge fi fi inaudio=$(groups daemon | grep audio || true) if [ ! -z "$inaudio" ]; then deluser daemon audio fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0