summaryrefslogtreecommitdiffstats
path: root/config/busybox/loginutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'config/busybox/loginutils/Config.in')
-rw-r--r--config/busybox/loginutils/Config.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/config/busybox/loginutils/Config.in b/config/busybox/loginutils/Config.in
index 978ac3d2c..03c0488f8 100644
--- a/config/busybox/loginutils/Config.in
+++ b/config/busybox/loginutils/Config.in
@@ -129,10 +129,17 @@ config BUSYBOX_FEATURE_CHECK_NAMES
For compatibility with Samba machine accounts "$" is also supported
at the end of the user or group name.
+config BUSYBOX_LAST_ID
+ int "Last valid uid or gid for adduser and addgroup"
+ depends on BUSYBOX_ADDUSER || BUSYBOX_ADDGROUP
+ default 60000
+ help
+ Last valid uid or gid for adduser and addgroup
+
config BUSYBOX_FIRST_SYSTEM_ID
int "First valid system uid or gid for adduser and addgroup"
depends on BUSYBOX_ADDUSER || BUSYBOX_ADDGROUP
- range 0 64900
+ range 0 BUSYBOX_LAST_ID
default 100
help
First valid system uid or gid for adduser and addgroup
@@ -140,7 +147,7 @@ config BUSYBOX_FIRST_SYSTEM_ID
config BUSYBOX_LAST_SYSTEM_ID
int "Last valid system uid or gid for adduser and addgroup"
depends on BUSYBOX_ADDUSER || BUSYBOX_ADDGROUP
- range 0 64900
+ range BUSYBOX_FIRST_SYSTEM_ID BUSYBOX_LAST_ID
default 999
help
Last valid system uid or gid for adduser and addgroup
@@ -227,13 +234,6 @@ config BUSYBOX_LOGIN_SESSION_AS_CHILD
almost always would want this to be set to Y, else PAM session
will not be cleaned up.
-config BUSYBOX_PAM
- bool "Support for PAM (Pluggable Authentication Modules)"
- default n
- depends on BUSYBOX_LOGIN
- help
- Use PAM in login(1) instead of direct access to password database.
-
config BUSYBOX_LOGIN_SCRIPTS
bool "Support for login scripts"
depends on BUSYBOX_LOGIN