sudo-sudoers-vine 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 (perhaps 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/apt-get, /usr/bin/smart, /sbin/update-alternatives
  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 LS_COLORS"
  45. Defaults env_keep += "MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE"
  46. Defaults env_keep += "LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES"
  47. Defaults env_keep += "LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE"
  48. Defaults env_keep += "LC_TIME LC_ALL LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY"
  49. ## Next comes the main part: which users can run what software on
  50. ## which machines (the sudoers file can be shared between multiple
  51. ## systems).
  52. ## Syntax:
  53. ##
  54. ## user MACHINE=COMMANDS
  55. ##
  56. ## The COMMANDS section may have other options added to it.
  57. ##
  58. ## Allow root to run any commands anywhere
  59. root ALL=(ALL) ALL
  60. ## Allows members of the 'sys' group to run networking, software,
  61. ## service management apps and more.
  62. # %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
  63. ## Allows people in group wheel to run all commands
  64. # %wheel ALL=(ALL) ALL
  65. %wheel ALL=(ALL) ALL
  66. ## Same thing without a password
  67. # %wheel ALL=(ALL) NOPASSWD: ALL
  68. ## Allows members of the users group to mount and unmount the
  69. ## cdrom as root
  70. # %users ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom
  71. ## Allows members of the users group to shutdown this system
  72. # %users localhost=/sbin/shutdown -h now