Advertisement
Guest User

Untitled

a guest
Jul 7th, 2010
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. # /etc/sudoers
  2. #
  3. # This file MUST be edited with the 'visudo' command as root.
  4. #
  5. # See the man page for details on how to write a sudoers file.
  6. #
  7.  
  8. Defaults    env_reset
  9.  
  10. # Host alias specification
  11.  
  12. # User alias specification
  13.  
  14. # Cmnd alias specification
  15.  
  16. # User privilege specification
  17. root    ALL=(ALL) ALL
  18.  
  19. # Allow members of group sudo to execute any command after they have
  20. # provided their password
  21. # (Note that later entries override this, so you might need to move
  22. # it further down)
  23. %sudo ALL=(ALL) ALL
  24. #
  25. #includedir /etc/sudoers.d
  26.  
  27. # Members of the admin group may gain root privileges
  28. %admin ALL=(ALL) ALL
  29.  
  30. # Allow user 'daichi' to use command without sudo prompt
  31. daichi ALL=(ALL)NOPASSWD:/usr/sbin/a2ensite
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement