summaryrefslogtreecommitdiffstats
path: root/rules/pam.in
blob: 4bf4cac100b4f996c02ac853bf6b1ec57075cef3 (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
## SECTION=security

menuconfig PAM
	tristate
	prompt "PAM                           "
	select DB		if PAM_DB
	select LIBC_CRYPT
	select LIBTIRPC		if PAM_NIS
	help
	  Linux-PAM (Pluggable Authentication Modules for Linux) is a suite
	  of shared libraries that enable the local system administrator to
	  choose how applications authenticate users.

if PAM

config PAM_DB
	bool
	prompt "build pam_userdb (authenticate against a Berkeley DB database)"

config PAM_NIS
	bool
	prompt "enable NIS/YP support in pam_unix"

endif