diff options
Diffstat (limited to 'loginutils/adduser.c')
-rw-r--r-- | loginutils/adduser.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/loginutils/adduser.c b/loginutils/adduser.c index e2818f852..ef18278ac 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c | |||
@@ -11,7 +11,7 @@ | |||
11 | //config: bool "adduser (15 kb)" | 11 | //config: bool "adduser (15 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Utility for creating a new user account. | 14 | //config: Utility for creating a new user account. |
15 | //config: | 15 | //config: |
16 | //config:config FEATURE_ADDUSER_LONG_OPTIONS | 16 | //config:config FEATURE_ADDUSER_LONG_OPTIONS |
17 | //config: bool "Enable long options" | 17 | //config: bool "Enable long options" |
@@ -23,19 +23,19 @@ | |||
23 | //config: default n | 23 | //config: default n |
24 | //config: depends on ADDUSER || ADDGROUP | 24 | //config: depends on ADDUSER || ADDGROUP |
25 | //config: help | 25 | //config: help |
26 | //config: Enable sanity check on user and group names in adduser and addgroup. | 26 | //config: Enable sanity check on user and group names in adduser and addgroup. |
27 | //config: To avoid problems, the user or group name should consist only of | 27 | //config: To avoid problems, the user or group name should consist only of |
28 | //config: letters, digits, underscores, periods, at signs and dashes, | 28 | //config: letters, digits, underscores, periods, at signs and dashes, |
29 | //config: and not start with a dash (as defined by IEEE Std 1003.1-2001). | 29 | //config: and not start with a dash (as defined by IEEE Std 1003.1-2001). |
30 | //config: For compatibility with Samba machine accounts "$" is also supported | 30 | //config: For compatibility with Samba machine accounts "$" is also supported |
31 | //config: at the end of the user or group name. | 31 | //config: at the end of the user or group name. |
32 | //config: | 32 | //config: |
33 | //config:config LAST_ID | 33 | //config:config LAST_ID |
34 | //config: int "Last valid uid or gid for adduser and addgroup" | 34 | //config: int "Last valid uid or gid for adduser and addgroup" |
35 | //config: depends on ADDUSER || ADDGROUP | 35 | //config: depends on ADDUSER || ADDGROUP |
36 | //config: default 60000 | 36 | //config: default 60000 |
37 | //config: help | 37 | //config: help |
38 | //config: Last valid uid or gid for adduser and addgroup | 38 | //config: Last valid uid or gid for adduser and addgroup |
39 | //config: | 39 | //config: |
40 | //config:config FIRST_SYSTEM_ID | 40 | //config:config FIRST_SYSTEM_ID |
41 | //config: int "First valid system uid or gid for adduser and addgroup" | 41 | //config: int "First valid system uid or gid for adduser and addgroup" |
@@ -43,7 +43,7 @@ | |||
43 | //config: range 0 LAST_ID | 43 | //config: range 0 LAST_ID |
44 | //config: default 100 | 44 | //config: default 100 |
45 | //config: help | 45 | //config: help |
46 | //config: First valid system uid or gid for adduser and addgroup | 46 | //config: First valid system uid or gid for adduser and addgroup |
47 | //config: | 47 | //config: |
48 | //config:config LAST_SYSTEM_ID | 48 | //config:config LAST_SYSTEM_ID |
49 | //config: int "Last valid system uid or gid for adduser and addgroup" | 49 | //config: int "Last valid system uid or gid for adduser and addgroup" |
@@ -51,7 +51,7 @@ | |||
51 | //config: range FIRST_SYSTEM_ID LAST_ID | 51 | //config: range FIRST_SYSTEM_ID LAST_ID |
52 | //config: default 999 | 52 | //config: default 999 |
53 | //config: help | 53 | //config: help |
54 | //config: Last valid system uid or gid for adduser and addgroup | 54 | //config: Last valid system uid or gid for adduser and addgroup |
55 | 55 | ||
56 | //applet:IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP)) | 56 | //applet:IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP)) |
57 | 57 | ||