forked from mirrors/nixpkgs
Update sudo.nix
Updated example for security.sudo.extraRules to match comment
This commit is contained in:
parent
d1b9bf9223
commit
38b7233f83
|
@ -75,7 +75,7 @@ in
|
|||
|
||||
# Allow execution of "/home/root/secret.sh" by user `backup`, `database`
|
||||
# and the group with GID `1006` without a password.
|
||||
{ users = [ "backup" ]; groups = [ 1006 ];
|
||||
{ users = [ "backup" "database" ]; groups = [ 1006 ];
|
||||
commands = [ { command = "/home/root/secret.sh"; options = [ "SETENV" "NOPASSWD" ]; } ]; }
|
||||
|
||||
# Allow all users of group `bar` to run two executables as user `foo`
|
||||
|
|
Loading…
Reference in a new issue