aboutsummaryrefslogtreecommitdiff
path: root/loginutils/Config.in
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-04 12:05:26 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-04 12:05:26 +0000
commite45930e8903cd80de149d6e92f05b8a3f80669cf (patch)
tree2363a354db9f2bafb4f3119684daf0b81417326b /loginutils/Config.in
parent196a953f21b14add828c2cc0e40b4bf8e76b1873 (diff)
downloadbusybox-w32-e45930e8903cd80de149d6e92f05b8a3f80669cf.tar.gz
busybox-w32-e45930e8903cd80de149d6e92f05b8a3f80669cf.tar.bz2
busybox-w32-e45930e8903cd80de149d6e92f05b8a3f80669cf.zip
Fold mkpasswd applet into cryptpw.
mkpasswd is in Debian, OTOH cryptpw was added to busybox earlier. Trying to make both camps happy by making those two applets just aliases. They are command-line compatible. We can decide whether we want to drop one (and which one) later. function old new delta cryptpw_main 183 314 +131 static.methods 21 - -21 packed_usage 25707 25648 -59 mkpasswd_main 307 - -307 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/1 up/down: 131/-387) Total: -256 bytes
Diffstat (limited to 'loginutils/Config.in')
-rw-r--r--loginutils/Config.in16
1 files changed, 5 insertions, 11 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index 6efca7edf..ddd0c8015 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -242,22 +242,16 @@ config CRYPTPW
242 bool "cryptpw" 242 bool "cryptpw"
243 default n 243 default n
244 help 244 help
245 Applet for crypting a string. 245 Encrypts the given password with the crypt(3) libc function
246 using the given salt. Debian has this utility under mkpasswd
247 name. Busybox provides mkpasswd as an alias for cryptpw.
246 248
247config CHPASSWD 249config CHPASSWD
248 bool "chpasswd" 250 bool "chpasswd"
249 default n 251 default n
250 help 252 help
251 chpasswd reads a file of user name and password pairs from 253 Reads a file of user name and password pairs from standard input
252 standard input and uses this information to update a group of 254 and uses this information to update a group of existing users.
253 existing users.
254
255config MKPASSWD
256 bool "mkpasswd"
257 default n
258 help
259 mkpasswd encrypts the given password with the crypt(3) libc function
260 using the given salt.
261 255
262config SU 256config SU
263 bool "su" 257 bool "su"