enable %sudo example in default sudoers file debian/1.7.2-1
authorBdale Garbee <bdale@gag.com>
Wed, 15 Jul 2009 07:29:58 +0000 (01:29 -0600)
committerBdale Garbee <bdale@gag.com>
Wed, 15 Jul 2009 07:29:58 +0000 (01:29 -0600)
debian/changelog
debian/sudo-ldap.postinst
debian/sudo.postinst

index 9259385e4fe6fab644e10b76a13f671aaef92084..cb081009f26c3a5f9a3aa17ecff0f549a3031cae 100644 (file)
@@ -1,9 +1,12 @@
 sudo (1.7.2-1) unstable; urgency=low
 
   * new upstream version, closes: #537103
-  * improve initial sudoers commented-out example, closes: #536220
+  * improve initial sudoers by having the exemption for users in group
+    sudo on by default, and including the ability to run any command as
+    any user.  This makes the default install roughly equivalent to our 
+    old use of the --with-exempt=sudo build option, closes: #536220, #536222
 
- -- Bdale Garbee <bdale@gag.com>  Wed, 15 Jul 2009 00:52:27 -0600
+ -- Bdale Garbee <bdale@gag.com>  Wed, 15 Jul 2009 01:29:46 -0600
 
 sudo (1.7.0-1) unstable; urgency=low
 
index 627116032f7a4d32ec31b0276662f753506a1991..e464377bd4f9677d80b8adae79d3bcf555141511 100644 (file)
@@ -20,10 +20,10 @@ if ( ! -f "/etc/sudoers") {
          "# User alias specification\n\n",
          "# Cmnd alias specification\n\n",
          "# User privilege specification\nroot\tALL=(ALL) ALL\n\n",
-         "# Uncomment to allow members of group sudo to not need a password\n",
+         "# Allow members of group sudo to not need a password\n",
          "# (Note that later entries override this, so you might need to move\n",
           "# it further down)\n",
-         "%sudo ALL=(ALL) NOPASSWD: ALL\n";
+         "%sudo ALL=(ALL) NOPASSWD: ALL\n";
        close SUDOERS;
 
 }
index 1494ccd8f570d173b0821d59fcc1e4bf2c15b996..c1a8b519f959873bd703639e5e799acb1538d370 100644 (file)
@@ -20,10 +20,10 @@ if ( ! -f "/etc/sudoers") {
          "# User alias specification\n\n",
          "# Cmnd alias specification\n\n",
          "# User privilege specification\nroot\tALL=(ALL) ALL\n\n",
-         "# Uncomment to allow members of group sudo to not need a password\n",
+         "# Allow members of group sudo to not need a password\n",
          "# (Note that later entries override this, so you might need to move\n",
           "# it further down)\n",
-         "%sudo ALL=(ALL) NOPASSWD: ALL\n";
+         "%sudo ALL=(ALL) NOPASSWD: ALL\n";
        close SUDOERS;
 
 }