diff options
author | xyz <gky44px1999@gmail.com> | 2022-08-14 03:27:14 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-08-14 03:27:14 -0700 |
commit | eb60925271ffa3d54c843fb82fdb6549f0f44b63 (patch) | |
tree | 2e254623e68967c0cb5ca87b6db9f4e0c87ec6d7 | |
parent | b9e8737cca1ccfce8a39c17b13b63405bfbaf126 (diff) |
sudoers, no nopasswd for sudo
-rw-r--r-- | etc/sudoers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/sudoers b/etc/sudoers index bc0d6a0c..e03a8f28 100644 --- a/etc/sudoers +++ b/etc/sudoers @@ -82,10 +82,10 @@ root ALL=(ALL:ALL) ALL ## Uncomment to allow members of group wheel to execute any command -# %wheel ALL=(ALL:ALL) ALL +%wheel ALL=(ALL:ALL) ALL ## Same thing without a password -%wheel ALL=(ALL:ALL) NOPASSWD: ALL +# %wheel ALL=(ALL:ALL) NOPASSWD: ALL ## Uncomment to allow members of group sudo to execute any command # %sudo ALL=(ALL:ALL) ALL |