]> git.gag.com Git - debian/sudo/blob - debian/postinst
Imported Debian patch 1.6.8p5-1
[debian/sudo] / debian / postinst
1 #!/usr/bin/perl
2
3 # remove old link
4
5 unlink ("/etc/alternatives/sudo") if ( -l "/etc/alternatives/sudo");
6
7 # make sure we have a sudoers file
8 if ( ! -f "/etc/sudoers") {
9
10         print "No /etc/sudoers found... creating one for you.\n";
11
12         open (SUDOERS, "> /etc/sudoers");
13         print SUDOERS "# /etc/sudoers\n",
14           "#\n",
15           "# This file MUST be edited with the 'visudo' command as root.\n",
16           "#\n",
17           "# See the man page for details on how to write a sudoers file.\n",
18           "#\n\n# Host alias specification\n\n",
19           "# User alias specification\n\n",
20           "# Cmnd alias specification\n\n",
21           "# User privilege specification\nroot\tALL=(ALL) ALL\n";
22         close SUDOERS;
23
24 }
25
26 # make sure sudoers has the correct permissions and owner/group
27 system ('chown root:root /etc/sudoers');
28 system ('chmod 440 /etc/sudoers');
29
30 # must do a remove first to un-do the "bad" links created by previous version
31 system ('update-rc.d -f sudo remove >/dev/null 2>&1');
32
33 system ('update-rc.d sudo start 75 S . >/dev/null');
34
35 # make sure we have a sudo group
36
37 exit 0 if getgrnam("sudo"); # we're finished if there is a group sudo
38
39 $gid = 27;                 # start searcg with gid 27
40 setgrent;
41 while (getgrgid($gid)) {
42         ++$gid;
43 }
44 endgrent;
45
46 if ($gid != 27) {
47         print "On Debian we normally use gid 27 for 'sudo'.\n";
48         $gname = getgrgid(27);
49         print "However, on your system gid 27 is group '$gname'.\n\n";
50         print "Would you like me to stop configuring sudo so that you can change this? [n] "; 
51         $ans = <STDIN>;
52         if ($ans =~ m/^[yY].*/) {
53                 print "'dpkg --pending --configure' will restart the configuration.\n\n\n";
54                 exit 1;
55         }
56 }
57
58 print "Creating group 'sudo' with gid = $gid\n";
59 system("groupadd -g $gid sudo");
60
61 print "";