aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-03 04:47:43 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-03 04:47:43 +0000
commit7234c3a0b6e95e0a3c2d907674dedfe930d491e0 (patch)
treec6f6e49920b7900bec59deef3364f3938a313cfa /loginutils
parent009ae1f17daa320836c4215c16ea1c0db12a5d07 (diff)
downloadbusybox-7234c3a0b6e95e0a3c2d907674dedfe930d491e0.tar.gz
Cleanup shadow.h stuff so it behaves as intended
-Erik
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/loginutils/config.in b/loginutils/config.in
index b3880aa3d..1d8a98633 100644
--- a/loginutils/config.in
+++ b/loginutils/config.in
@@ -7,6 +7,7 @@ mainmenu_option next_comment
comment 'Login/Password Management Utilities'
+bool 'Use internal password and group functions instead of the system functions' CONFIG_USE_BB_PWD_GRP
bool 'addgroup' CONFIG_ADDGROUP
bool 'adduser' CONFIG_ADDUSER
bool 'deluser' CONFIG_DELUSER
@@ -20,6 +21,9 @@ bool 'passwd' CONFIG_PASSWD
bool 'su' CONFIG_SU
if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then
bool ' Support for shadow passwords' CONFIG_FEATURE_SHADOWPASSWDS
+ if [ "$CONFIG_USE_BB_PWD_GRP" = "y" -a "$CONFIG_FEATURE_SHADOWPASSWDS" = "y" ]; then
+ bool ' Use busybox shadow password functions' CONFIG_USE_BB_SHADOW
+ fi
fi
bool 'sulogin' CONFIG_SULOGIN
bool 'vlock' CONFIG_VLOCK