summaryrefslogtreecommitdiffstats
path: root/rules/shadow.in
blob: b3979ebd30ad4aee36c1e5ff601b6f799f9d0c8c (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
## SECTION=shell_and_console
comment "BusyBox' loginutils selected!"
	depends on BUSYBOX_ADDUSER || BUSYBOX_ADDGROUP || BUSYBOX_LOGIN || BUSYBOX_PASSWD || BUSYBOX_SU

menuconfig SHADOW
	tristate
	depends on (!BUSYBOX_ADDUSER && !BUSYBOX_ADDGROUP && !BUSYBOX_LOGIN && !BUSYBOX_PASSWD && !BUSYBOX_SU) || ALLYES
	select LIBC_CRYPT
	select PAM		if GLOBAL_PAM
	prompt "shadow                        "
	help
	  Password and account management tool suite with support
	  for shadow files and PAM.

if SHADOW

config SHADOW_ADMIN
	bool
	prompt "install account administration commands"
	help
	  Enable this option if you want to install commands
	  which manipulate user accounts (administer /etc/passwd,
	  /etc/shadow and /etc/group, /etc/gshadow ...)

endif