You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
525 B
19 lines
525 B
## |
|
## sudoers -- global sudoers(5) specification |
|
## Hint: general structure is "who where = (as_whom) what" |
|
## |
|
|
|
#includedir @l_prefix@/etc/sudo/sudoers.d |
|
|
|
# - allow root to use sudo at all (first entry) |
|
# - allow root (second entry) and |
|
# - anybody in group "wheel" (third entry) |
|
# - to run on all hosts |
|
# - under any user |
|
# - without password request |
|
# - with set environment variables |
|
# - any command |
|
Defaults root_sudo |
|
root ALL = (ALL) NOPASSWD: SETENV: ALL |
|
%wheel ALL = (ALL) NOPASSWD: SETENV: ALL |
|
|
|
|