add an entry in nsswitch.conf and remove on purge for the sudo-ldap package
[debian/sudo] / debian / sudo.postinst
1 #!/bin/sh
2
3 # remove old link
4
5 if [ -L /etc/alternatives/sudo ]; then
6         rm /etc/alternatives/sudo
7 fi
8
9 # complain if no sudoers file is present
10 if [ ! -f /etc/sudoers ];then
11         echo "WARNING:  /etc/sudoers not present!";
12 fi
13
14 # handle state directory transition from /var/run/sudo to /var/lib/sudo,
15 # moving any existing content over to avoid re-lecturing existing users
16 if [ -d "/var/run/sudo" ];then
17     mkdir -p /var/lib/sudo
18     (cd /var/run/sudo ; tar cf - .) | (cd /var/lib/sudo ; tar xf -)
19     rm -rf /var/run/sudo
20 fi
21
22 # make sure sudoers has the correct permissions and owner/group
23 chown root:root /etc/sudoers
24 chmod 440 /etc/sudoers
25
26 update-rc.d -f sudo remove >/dev/null 2>&1
27
28 update-rc.d sudo start 75 2 3 4 5 . >/dev/null
29
30 # if we've gotten this far .. remove the saved, unchanged old sudoers file
31 rm -f /etc/sudoers.pre-conffile
32
33 # make sure we have a sudo group
34
35 [ -n "`/usr/bin/getent group sudo`" ] && exit 0   # we're finished if there is a group sudo:
36
37 # start search with gid 27
38 gid="27"
39 while [ -n "`/usr/bin/getent group $gid | /usr/bin/cut -d: -f3`" ];do
40         gid=`/usr/bin/expr $gid + 1`
41 done
42
43
44 if [ "$gid" -ne "27" ];then
45         echo "On Debian we normally use gid 27 for 'sudo'."
46         gname="`/usr/bin/getent group 27 | /usr/bin/cut -d: -f1`"
47         echo "However, on your system gid 27 is group '$gname'."
48         echo ""
49         echo "Would you like me to stop configuring sudo so that you can change this?"; 
50         while true;do
51                 echo -n "(Enter 'yes' to stop, enter to continue): "
52                 read ans
53                 [ "$ans" = "" ] && break
54                 if [ "$ans" = "yes" -o "$ans" = "YES" ];then
55                         echo "'dpkg --pending --configure' will restart the configuration.\n\n"
56                         exit 1;
57                 fi
58                 echo "Please enter exactly 'yes' to stop, or press the enter key to continue without stopping"
59         done
60 fi
61
62 echo "Creating group 'sudo' with gid = $gid";
63 groupadd -g $gid sudo
64
65 echo ""
66