summaryrefslogtreecommitdiffstats
path: root/rules/sudo.in
blob: 58a3c1a37c7a7a615f5f2f3d549776076e8cd2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## SECTION=shell_and_console
menuconfig SUDO
	tristate
	prompt "sudo                          "
	help
	  Sudo is a program designed to allow a sysadmin
	  to give limited root privileges to users and log
	  root activity.  The basic philosophy is to give
 	  as few privileges as possible but still allow
	  people to get their work done.

if SUDO

config SUDO_USE_SENDMAIL
	bool
	# FIXME: sendmail support is buggy and searches for
	# /sbin/sendmail on the host
	#prompt "sendmail support"

config SUDO_INSTALL_ETC_SUDOERS
	bool "Install sudoers file into /etc"
	default y
	help
	  Installs /etc/sudoers from a selectable source

endif