source: trunk/debathena/debathena/libnss-nonlocal/debian/libnss-nonlocal-common.postrm @ 26035

Revision 26035, 1.2 KB checked in by andersk, 11 years ago (diff)
In libnss-nonlocal: * New upstream release. - Support Automake 1.12. - Guard one-time initialization with memory barriers. - Make initgroups_dyn succeed when adding only magic groups. * Rewrite packaging with Debhelper 7. * Move magic user and group creation to separate libnss-nonlocal-common package. Full history: git://andersk.mit.edu/nss_nonlocal.git debian/2.1-0debathena1
Line 
1#!/bin/sh
2# postrm script for libnss-nonlocal-common
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)
24        if getent passwd nss-nonlocal-users >/dev/null; then
25            deluser --system nss-nonlocal-users || :
26        fi
27        if getent group nss-local-users >/dev/null; then
28            delgroup --system nss-local-users || :
29        fi
30        if getent group nss-nonlocal-users >/dev/null; then
31            delgroup --system nss-nonlocal-users || :
32        fi
33        ;;
34
35    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
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
50
51
Note: See TracBrowser for help on using the repository browser.