sudoers.conf 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ## Sudoers allows particular users to run various commands as
  2. ## the root user, without needing the root password.
  3. ##
  4. ## Examples are provided at the bottom of the file for collections
  5. ## of related commands, which can then be delegated out to particular
  6. ## users or groups.
  7. ##
  8. ## This file must be edited with the 'visudo' command.
  9. ## Host Aliases
  10. ## Groups of machines. You may prefer to use hostnames (perhap using
  11. ## wildcards for entire domains) or IP addresses instead.
  12. # Host_Alias FILESERVERS = fs1, fs2
  13. # Host_Alias MAILSERVERS = smtp, smtp2
  14. ## User Aliases
  15. ## These aren't often necessary, as you can use regular groups
  16. ## (ie, from files, LDAP, NIS, etc) in this file - just use %groupname
  17. ## rather than USERALIAS
  18. # User_Alias ADMINS = jsmith, mikem
  19. ## Command Aliases
  20. ## These are groups of related commands...
  21. ## Networking
  22. #Cmnd_Alias NETWORKING = /sbin/route, /sbin/ifconfig, /bin/ping, /sbin/dhclient, /usr/bin/net, /sbin/iptables, /usr/bin/rfcomm, /usr/bin/wvdial, /sbin/iwconfig, /sbin/mii-tool
  23. ## Installation and management of software
  24. #Cmnd_Alias SOFTWARE = /bin/rpm, /usr/bin/up2date, /usr/bin/yum
  25. ## Services
  26. #Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig
  27. ## Updating the locate database
  28. #Cmnd_Alias LOCATE = /usr/bin/updatedb
  29. ## Storage
  30. #Cmnd_Alias STORAGE = /sbin/fdisk, /sbin/sfdisk, /sbin/parted, /sbin/partprobe, /bin/mount, /bin/umount
  31. ## Delegating permissions
  32. #Cmnd_Alias DELEGATING = /usr/sbin/visudo, /bin/chown, /bin/chmod, /bin/chgrp
  33. ## Processes
  34. #Cmnd_Alias PROCESSES = /bin/nice, /bin/kill, /usr/bin/kill, /usr/bin/killall
  35. ## Drivers
  36. #Cmnd_Alias DRIVERS = /sbin/modprobe
  37. # Defaults specification
  38. #
  39. # Disable "ssh hostname sudo <cmd>", because it will show the password in clear.
  40. # You have to run "ssh -t hostname sudo <cmd>".
  41. #
  42. #Defaults requiretty
  43. Defaults env_reset
  44. Defaults env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR \
  45. LS_COLORS MAIL PS1 PS2 QTDIR USERNAME \
  46. LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION \
  47. LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \
  48. LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS \
  49. _XKB_CHARSET XAUTHORITY VESTA"
  50. # Disable syslog loggging
  51. Defaults !syslog
  52. ## Next comes the main part: which users can run what software on
  53. ## which machines (the sudoers file can be shared between multiple
  54. ## systems).
  55. ## Syntax:
  56. ##
  57. ## user MACHINE=COMMANDS
  58. ##
  59. ## The COMMANDS section may have other options added to it.
  60. ##
  61. ## Allow root to run any commands anywhere
  62. root ALL=(ALL) ALL
  63. ## Allows members of the 'sys' group to run networking, software,
  64. ## service management apps and more.
  65. # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
  66. ## Allows people in group wheel to run all commands
  67. # %wheel ALL=(ALL) ALL
  68. ## Same thing without a password
  69. # %wheel ALL=(ALL) NOPASSWD: ALL
  70. ## Allows members of the users group to mount and unmount the
  71. ## cdrom as root
  72. # %users ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom
  73. ## Allows members of the users group to shutdown this system
  74. # %users localhost=/sbin/shutdown -h now
  75. admin ALL=NOPASSWD:/usr/local/vesta/bin/*