diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2009-06-30 12:43:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2009-06-30 12:43:02 +0000 |
commit | 4c5fd7208e41155908077f94248f6873b3169c5b (patch) | |
tree | 4c9f2ebe6e4f88a15e5dbd97c2e3392b42a56532 /usr.bin | |
parent | 46aec89bf4de3152169c62bd88c68bb0f3d328d7 (diff) |
Add missing single quotes around a colon in Runas_Spec definition.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/sudo/ChangeLog | 6 | ||||
-rw-r--r-- | usr.bin/sudo/sudoers.pod | 18 |
2 files changed, 22 insertions, 2 deletions
diff --git a/usr.bin/sudo/ChangeLog b/usr.bin/sudo/ChangeLog index 9a3940d4af3..15e7d2e0c59 100644 --- a/usr.bin/sudo/ChangeLog +++ b/usr.bin/sudo/ChangeLog @@ -1,3 +1,9 @@ +2009-06-30 08:41 millert + + * sudoers.cat, sudoers.man.in, sudoers.pod: Add missing single + quotes around a colon in Runas_Spec definition. From Elias + Benali. + 2009-06-29 09:36 millert * redblack.c: In rbrepair, re-color the root or the first non-block diff --git a/usr.bin/sudo/sudoers.pod b/usr.bin/sudo/sudoers.pod index 847052432ab..a55ce0e6c60 100644 --- a/usr.bin/sudo/sudoers.pod +++ b/usr.bin/sudo/sudoers.pod @@ -18,7 +18,7 @@ Sponsored in part by the Defense Advanced Research Projects Agency (DARPA) and Air Force Research Laboratory, Air Force Materiel Command, USAF, under agreement number F39502-99-1-0512. -$Sudo: sudoers.pod,v 1.172 2009/06/23 18:29:02 millert Exp $ +$Sudo: sudoers.pod,v 1.173 2009/06/30 12:41:09 millert Exp $ =pod =head1 NAME @@ -278,7 +278,7 @@ See L<"SUDOERS OPTIONS"> for a list of supported Defaults parameters. Cmnd_Spec ::= Runas_Spec? Tag_Spec* Cmnd - Runas_Spec ::= '(' Runas_List? (: Runas_List)? ')' + Runas_Spec ::= '(' Runas_List? (':' Runas_List)? ')' Tag_Spec ::= ('NOPASSWD:' | 'PASSWD:' | 'NOEXEC:' | 'EXEC:' | 'SETENV:' | 'NOSETENV:' ) @@ -990,6 +990,13 @@ two consecutive C<%> characters are collapsed into a single C<%> character The default value is C<@passprompt@>. +=item role + +The default SELinux role to use when constructing a new security +context to run the command. The default role may be overridden on +a per-command basis in I<sudoers> or via command line options. +This option is only available whe B<sudo> is built with SELinux support. + =item runas_default The default user to run commands as if the B<-u> option is not specified @@ -1023,6 +1030,13 @@ The default is F<@timedir@>. The owner of the timestamp directory and the timestamps stored therein. The default is C<root>. +=item type + +The default SELinux type to use when constructing a new security +context to run the command. The default type may be overridden on +a per-command basis in I<sudoers> or via command line options. +This option is only available whe B<sudo> is built with SELinux support. + =back B<Strings that can be used in a boolean context>: |