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

Revision 22714, 1.1 KB checked in by tabbott, 17 years ago (diff)
In libnss-nonlocal: * Have initgroups() only add nonlocal groups to nonlocal users. * If a group called nss-local-users exists, add local users to it. * If a group called nss-nonlocal-users exists, add nonlocal users to it. * Create nss-local-users and nss-nonlocal-users at installation.
Line 
1#!/bin/sh
2# postrm script for libnss-nonlocal
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 group nss-local-users >/dev/null; then
25            delgroup --system nss-local-users || :
26        fi
27        if getent group nss-nonlocal-users >/dev/null; then
28            delgroup --system nss-nonlocal-users || :
29        fi
30        ;;
31
32    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
33        ;;
34
35    *)
36        echo "postrm called with unknown argument \`$1'" >&2
37        exit 1
38        ;;
39esac
40
41# dh_installdeb will replace this with shell code automatically
42# generated by other debhelper scripts.
43
44#DEBHELPER#
45
46exit 0
47
48
Note: See TracBrowser for help on using the repository browser.