cryptpw: new applet (a bit less than 3k added)
[oweals/busybox.git] / loginutils / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Login/Password Management Utilities"
7
8 config FEATURE_SHADOWPASSWDS
9         bool "Support for shadow passwords"
10         default n
11         help
12           Build support for shadow password in /etc/shadow.  This file is only
13           readable by root and thus the encrypted passwords are no longer
14           publicly readable.
15
16 config USE_BB_SHADOW
17         bool "  Use busybox shadow password functions"
18         default y
19         depends on USE_BB_PWD_GRP && FEATURE_SHADOWPASSWDS
20         help
21             If you leave this disabled, busybox will use the system's shadow
22             password handling functions.  And if you are using the GNU C library
23             (glibc), you will then need to install the /etc/nsswitch.conf
24             configuration file and the required /lib/libnss_* libraries in
25             order for the shadow password functions to work.  This generally
26             makes your embedded system quite a bit larger.
27
28             Enabling this option will cause busybox to directly access the
29             system's /etc/shadow file when handling shadow passwords.  This
30             makes your system smaller and I will get fewer emails asking about
31             how glibc NSS works).  When this option is enabled, you will not be
32             able to use PAM to access shadow passwords from remote LDAP
33             password servers and whatnot.
34
35 config USE_BB_PWD_GRP
36         bool "Use internal password and group functions rather than system functions"
37         default n
38         help
39             If you leave this disabled, busybox will use the system's password
40             and group functions.  And if you are using the GNU C library
41             (glibc), you will then need to install the /etc/nsswitch.conf
42             configuration file and the required /lib/libnss_* libraries in
43             order for the password and group functions to work.  This generally
44             makes your embedded system quite a bit larger.
45
46             Enabling this option will cause busybox to directly access the
47             system's /etc/password, /etc/group files (and your system will be
48             smaller, and I will get fewer emails asking about how glibc NSS
49             works).  When this option is enabled, you will not be able to use
50             PAM to access remote LDAP password servers and whatnot.  And if you
51             want hostname resolution to work with glibc, you still need the
52             /lib/libnss_* libraries.
53
54             If you enable this option, it will add about 1.5k to busybox.
55
56 config ADDGROUP
57         bool "addgroup"
58         default n
59         help
60           Utility for creating a new group account.
61
62 config FEATURE_ADDUSER_TO_GROUP
63         bool "Support for adding users to groups"
64         default n
65         depends on ADDGROUP
66         help
67           If  called  with two non-option arguments,
68           addgroup will add an existing user to an
69           existing group.
70
71 config DELGROUP
72         bool "delgroup"
73         default n
74         help
75           Utility for deleting a group account.
76
77 config FEATURE_DEL_USER_FROM_GROUP
78         bool "Support for removing users from groups."
79         default n
80         depends on DELGROUP
81         help
82           If called with two non-option arguments, deluser 
83           or delgroup will remove an user from a specified group.
84
85 config ADDUSER
86         bool "adduser"
87         default n
88         help
89           Utility for creating a new user account.
90
91 config DELUSER
92         bool "deluser"
93         default n
94         help
95           Utility for deleting a user account.
96
97 config GETTY
98         bool "getty"
99         default n
100         select FEATURE_SYSLOG
101         help
102           getty lets you log in on a tty, it is normally invoked by init.
103
104 config FEATURE_UTMP
105         bool "Support utmp file"
106         depends on GETTY || LOGIN || SU || WHO
107         default n
108         help
109           The file /var/run/utmp is used to track who is currently logged in.
110
111 config FEATURE_WTMP
112         bool "Support wtmp file"
113         depends on GETTY || LOGIN || SU || LAST
114         default n
115         select FEATURE_UTMP
116         help
117           The file /var/run/wtmp is used to track when user's have logged into
118           and logged out of the system.
119
120 config LOGIN
121         bool "login"
122         default n
123         select FEATURE_SUID
124         select FEATURE_SYSLOG
125         help
126           login is used when signing onto a system.
127
128           Note that Busybox binary must be setuid root for this applet to
129           work properly.
130
131 config LOGIN_SCRIPTS
132         bool "Support for login scripts"
133         depends on LOGIN
134         default n
135         help
136           Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
137           just prior to switching from root to logged-in user.
138
139 config FEATURE_SECURETTY
140         bool "Support for /etc/securetty"
141         default y
142         depends on LOGIN
143         help
144           The file  /etc/securetty  is used by (some versions of) login(1).
145           The file contains the device names of tty lines (one per line,
146           without leading /dev/) on which root is allowed to login.
147
148 config PASSWD
149         bool "passwd"
150         default n
151         select FEATURE_SUID
152         select FEATURE_SYSLOG
153         help
154           passwd changes passwords for user and group accounts.  A normal user
155           may only change the password for his/her own account, the super user
156           may change the password for any account.  The administrator of a group
157           may change the password for the group.
158
159           Note that Busybox binary must be setuid root for this applet to
160           work properly.
161
162 config FEATURE_PASSWD_WEAK_CHECK
163         bool "Check new passwords for weakness"
164         default y
165         depends on PASSWD
166         help
167           With this option passwd will refuse new passwords which are "weak".
168
169 config CRYPTPW
170         bool "cryptpw"
171         default n
172         help
173           Applet for crypting a string.
174
175 config SU
176         bool "su"
177         default n
178         select FEATURE_SUID
179         select FEATURE_SYSLOG
180         help
181           su is used to become another user during a login session.
182           Invoked without a username, su defaults to becoming the super user.
183
184           Note that Busybox binary must be setuid root for this applet to
185           work properly.
186
187 config FEATURE_SU_SYSLOG
188         bool "Enable su to write to syslog"
189         default y
190         depends on SU
191
192 config FEATURE_SU_CHECKS_SHELLS
193         bool "Enable su to check user's shell to be listed in /etc/shells"
194         depends on SU
195         default y
196
197 config SULOGIN
198         bool "sulogin"
199         default n
200         select FEATURE_SYSLOG
201         help
202           sulogin is invoked when the system goes into single user
203           mode (this is done through an entry in inittab).
204
205 config VLOCK
206         bool "vlock"
207         default n
208         select FEATURE_SUID
209         help
210           Build the "vlock" applet which allows you to lock (virtual) terminals.
211
212           Note that Busybox binary must be setuid root for this applet to
213           work properly.
214
215 endmenu
216