summaryrefslogtreecommitdiff
path: root/loginutils/Config.src
diff options
context:
space:
mode:
authorHarald Becker <ralda@gmx.de>2010-09-22 14:50:15 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-09-22 18:03:29 +0200
commit361b1a6884bc9d4f5cece22d0eb9fe5eae17bda7 (patch)
tree7657b775df392a70b8dc1ea2bffddef112f71b0d /loginutils/Config.src
parent0e13b4019c3d05933ba8d37357023bfcd82e8106 (diff)
downloadbusybox-w32-361b1a6884bc9d4f5cece22d0eb9fe5eae17bda7.tar.gz
busybox-w32-361b1a6884bc9d4f5cece22d0eb9fe5eae17bda7.tar.bz2
busybox-w32-361b1a6884bc9d4f5cece22d0eb9fe5eae17bda7.zip
deluser: make it simpler, fix inability to delete user from group
Also makes menuconfig order more sensible Signed-off-by: Harald Becker <ralda@gmx.de> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'loginutils/Config.src')
-rw-r--r--loginutils/Config.src84
1 files changed, 42 insertions, 42 deletions
diff --git a/loginutils/Config.src b/loginutils/Config.src
index 5d497c4dc..8158bce74 100644
--- a/loginutils/Config.src
+++ b/loginutils/Config.src
@@ -93,41 +93,18 @@ config USE_BB_CRYPT_SHA
93 With this option off, login will fail password check for any 93 With this option off, login will fail password check for any
94 user which has password encrypted with these algorithms. 94 user which has password encrypted with these algorithms.
95 95
96config ADDGROUP 96config ADDUSER
97 bool "addgroup" 97 bool "adduser"
98 default y 98 default y
99 help 99 help
100 Utility for creating a new group account. 100 Utility for creating a new user account.
101 101
102config FEATURE_ADDGROUP_LONG_OPTIONS 102config FEATURE_ADDUSER_LONG_OPTIONS
103 bool "Enable long options" 103 bool "Enable long options"
104 default y 104 default y
105 depends on ADDGROUP && LONG_OPTS 105 depends on ADDUSER && LONG_OPTS
106 help
107 Support long options for the addgroup applet.
108
109config FEATURE_ADDUSER_TO_GROUP
110 bool "Support for adding users to groups"
111 default y
112 depends on ADDGROUP
113 help
114 If called with two non-option arguments,
115 addgroup will add an existing user to an
116 existing group.
117
118config DELGROUP
119 bool "delgroup"
120 default y
121 help
122 Utility for deleting a group account.
123
124config FEATURE_DEL_USER_FROM_GROUP
125 bool "Support for removing users from groups"
126 default y
127 depends on DELGROUP
128 help 106 help
129 If called with two non-option arguments, deluser 107 Support long options for the adduser applet.
130 or delgroup will remove an user from a specified group.
131 108
132config FEATURE_CHECK_NAMES 109config FEATURE_CHECK_NAMES
133 bool "Enable sanity check on user/group names in adduser and addgroup" 110 bool "Enable sanity check on user/group names in adduser and addgroup"
@@ -141,19 +118,6 @@ config FEATURE_CHECK_NAMES
141 For compatibility with Samba machine accounts "$" is also supported 118 For compatibility with Samba machine accounts "$" is also supported
142 at the end of the user or group name. 119 at the end of the user or group name.
143 120
144config ADDUSER
145 bool "adduser"
146 default y
147 help
148 Utility for creating a new user account.
149
150config FEATURE_ADDUSER_LONG_OPTIONS
151 bool "Enable long options"
152 default y
153 depends on ADDUSER && LONG_OPTS
154 help
155 Support long options for the adduser applet.
156
157config FIRST_SYSTEM_ID 121config FIRST_SYSTEM_ID
158 int "First valid system uid or gid for adduser and addgroup" 122 int "First valid system uid or gid for adduser and addgroup"
159 depends on ADDUSER || ADDGROUP 123 depends on ADDUSER || ADDGROUP
@@ -170,12 +134,48 @@ config LAST_SYSTEM_ID
170 help 134 help
171 Last valid system uid or gid for adduser and addgroup 135 Last valid system uid or gid for adduser and addgroup
172 136
137config ADDGROUP
138 bool "addgroup"
139 default y
140 help
141 Utility for creating a new group account.
142
143config FEATURE_ADDGROUP_LONG_OPTIONS
144 bool "Enable long options"
145 default y
146 depends on ADDGROUP && LONG_OPTS
147 help
148 Support long options for the addgroup applet.
149
150config FEATURE_ADDUSER_TO_GROUP
151 bool "Support for adding users to groups"
152 default y
153 depends on ADDGROUP
154 help
155 If called with two non-option arguments,
156 addgroup will add an existing user to an
157 existing group.
158
173config DELUSER 159config DELUSER
174 bool "deluser" 160 bool "deluser"
175 default y 161 default y
176 help 162 help
177 Utility for deleting a user account. 163 Utility for deleting a user account.
178 164
165config DELGROUP
166 bool "delgroup"
167 default y
168 help
169 Utility for deleting a group account.
170
171config FEATURE_DEL_USER_FROM_GROUP
172 bool "Support for removing users from groups"
173 default y
174 depends on DELGROUP
175 help
176 If called with two non-option arguments, deluser
177 or delgroup will remove an user from a specified group.
178
179config GETTY 179config GETTY
180 bool "getty" 180 bool "getty"
181 default y 181 default y