blob: b46e66d01c6cb457449fd183e442267740f68dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/sh
# postinst script for libnss-mapuser
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
# Add mapname and user to /etc/nsswitch.conf, since it's necessary
# for this package. uid must be first, and mapname must be last
# so uids for mapped users return the mapped name, and on the name,
# we only want to map if no other matches were found
( set +e;
rgroup=radius_users
if [ -e "/etc/nsswitch.conf" ]; then
sed -i -e '/ mapname/b' \
-e '/^passwd/s/[ \t][ \t]*/&mapuid /' \
-e '/^passwd.*#/s/#.*/ mapname &/' \
-e '/^passwd[^#]*$/s/$/ mapname &/' \
/etc/nsswitch.conf
fi
addgroup --quiet $rgroup 2>&1 | grep -v 'already exists'
adduser --quiet --firstuid 1000 --disabled-login --ingroup $rgroup \
--gecos "radius user" radius_user 2>&1 | grep -v 'already exists'
exit 0
)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# needed for install, upgrade, remove, and purge, including aborts
pam-auth-update --package
#DEBHELPER#
exit 0
|