diff options
author | Rob Landley <rob@landley.net> | 2005-12-21 16:33:41 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-21 16:33:41 +0000 |
commit | beb665a376d60493617ed7913531cb937a5aee4d (patch) | |
tree | dfea76ce9c9947ecb5143f56920b852a6af83c1e | |
parent | 17329745fc31fb23e6647ddf4ed41c0a8a0f90c1 (diff) | |
download | busybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.tar.gz busybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.tar.bz2 busybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.zip |
Second attempt to simplify the login menu. Shadow password stuff at the top,
with no dependencies (since depending on 9 of the 13 apps in the menu gets
a bit silly). And fix my attempt to make internal shadow password support
automatically depend on internal password support plus shadow password
support.
-rw-r--r-- | loginutils/Config.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in index 9aa6b4937..89f699850 100644 --- a/loginutils/Config.in +++ b/loginutils/Config.in | |||
@@ -8,14 +8,13 @@ menu "Login/Password Management Utilities" | |||
8 | config CONFIG_FEATURE_SHADOWPASSWDS | 8 | config CONFIG_FEATURE_SHADOWPASSWDS |
9 | bool "Support for shadow passwords" | 9 | bool "Support for shadow passwords" |
10 | default n | 10 | default n |
11 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU || CONFIG_VLOCK | ||
12 | help | 11 | help |
13 | Build support for shadow password in /etc/shadow. This file is only | 12 | Build support for shadow password in /etc/shadow. This file is only |
14 | readable by root and thus the encrypted passwords are no longer | 13 | readable by root and thus the encrypted passwords are no longer |
15 | publicly readable. | 14 | publicly readable. |
16 | 15 | ||
17 | config CONFIG_USE_BB_SHADOW | 16 | config CONFIG_USE_BB_SHADOW |
18 | # bool " Use busybox shadow password functions" | 17 | bool #" Use busybox shadow password functions" |
19 | default y | 18 | default y |
20 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS | 19 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS |
21 | help | 20 | help |