diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2009-07-19 23:26:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2009-07-19 23:26:45 +0000 |
commit | 88d1944c66d377cbac385f30588a2939d0eb4e8c (patch) | |
tree | 6c1166cd868ec13c9e3dda218c344246cd4591ec /usr.bin/sudo | |
parent | 5fe107c6411bb163cd944f1316a780ed4ee35d02 (diff) |
Missed these in sudo sudo 1.7.2 update.
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/README | 2 | ||||
-rw-r--r-- | usr.bin/sudo/WHATSNEW | 43 |
2 files changed, 44 insertions, 1 deletions
diff --git a/usr.bin/sudo/README b/usr.bin/sudo/README index 301ca551758..bf7522fb7e9 100644 --- a/usr.bin/sudo/README +++ b/usr.bin/sudo/README @@ -1,4 +1,4 @@ -This is Sudo version 1.7.0 +This is Sudo version 1.7.2 The sudo philosophy =================== diff --git a/usr.bin/sudo/WHATSNEW b/usr.bin/sudo/WHATSNEW index 290bacebb27..657fd29a5b8 100644 --- a/usr.bin/sudo/WHATSNEW +++ b/usr.bin/sudo/WHATSNEW @@ -1,3 +1,46 @@ +What's new in Sudo 1.7.2? + + * A new #includedir directive is available in sudoers. This can be + used to implement an /etc/sudo.d directory. Files in an includedir + are not edited by visudo unless they contain a syntax error. + + * The -g option did not work properly when only setting the group + (and not the user). Also, in -l mode the wrong user was displayed + for sudoers entries where only the group was allowed to be set. + + * Fixed a problem with the alias checking in visudo which + could prevent visudo from exiting. + + * Sudo will now correctly parse the shell-style /etc/environment + file format used by pam_env on Linux. + + * When doing password and group database lookups, sudo will only + cache an entry by name or by id, depending on how the entry was + looked up. Previously, sudo would cache by both name and id + from a single lookup, but this breaks sites that have multiple + password or group database names that map to the same uid or + gid. + + * User and group names in sudoers may now be enclosed in double + quotes to avoid having to escape special characters. + + * BSM audit fixes when changing to a non-root uid. + + * Experimental non-Unix group support. Currently only works with + Quest Authorization Services and allows Active Directory groups + fixes for Minix-3. + + * For Netscape/Mozilla-derived LDAP SDKs the certificate and key + paths may be specified as a directory or a file. However, version + 5.0 of the SDK only appears to support using a directory (despite + documentation to the contrary). If SSL client initialization + fails and the certificate or key paths look like they could be + default file name, strip off the last path element and try again. + + * A setenv() compatibility fix for Linux systems, where a NULL + value is treated the same as an empty string and the variable + name is checked against the NULL pointer. + What's new in Sudo 1.7.1? * A new Defaults option "pwfeedback" will cause sudo to provide visual |