source: gutenbach-remctl/gutenbach-remctl.postrm @ 53936a5

debianmacno-cupsweb
Last change on this file since 53936a5 was 53936a5, checked in by Jessica B. Hamrick <jhamrick@…>, 14 years ago

Created a package around the remctl scripts to make
installation easy. Package installs and runs cleanly
on lbsg, but has not been tested on zsr yet.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#!/bin/sh
2# postrm script for gutenbach-remctl
3#
4# see: dh_installdeb(1)
5
6set -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
22case "$1" in
23    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
24        if [ "$1" = "purge" ]; then
25            if [ -e /usr/lib/gutenbach/remctl ]; then
26                echo "Removing /usr/lib/gutenbach/remctl/ ..." >&2
27                rm -r  /usr/lib/gutenbach/remctl
28            fi
29
30            if [ -e /etc/remctl/conf.d ]; then
31                echo "Removing /etc/remctl/conf.d ..." >&2
32                rm /etc/remctl/conf.d
33                mkdir /etc/remctl/conf.d
34            fi
35        fi
36    ;;
37
38    *)
39        echo "postrm called with unknown argument \`$1'" >&2
40        exit 1
41    ;;
42esac
43
44# dh_installdeb will replace this with shell code automatically
45# generated by other debhelper scripts.
46
47#DEBHELPER#
48
49exit 0
Note: See TracBrowser for help on using the repository browser.