summaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-14 19:37:08 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-14 19:37:08 +0000
commite5642119ee566520a098027746808dd6b9226d99 (patch)
treebcdb42552005d1498a48ffd634b1c216f01b8f13 /loginutils
parent1eceb127bd189bf377b6f25dfce04d61e25d89d2 (diff)
downloadbusybox-w32-e5642119ee566520a098027746808dd6b9226d99.tar.gz
busybox-w32-e5642119ee566520a098027746808dd6b9226d99.tar.bz2
busybox-w32-e5642119ee566520a098027746808dd6b9226d99.zip
Patch from Thomas Cameron:
Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/Config.in25
1 files changed, 16 insertions, 9 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index dab4ae1a4..d24a40f0e 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -15,25 +15,25 @@ config CONFIG_ADDGROUP
15 bool "addgroup" 15 bool "addgroup"
16 default n 16 default n
17 help 17 help
18 Please submit a patch to add help text for this item. 18 Utility for creating a new group account.
19 19
20config CONFIG_DELGROUP 20config CONFIG_DELGROUP
21 bool "delgroup" 21 bool "delgroup"
22 default n 22 default n
23 help 23 help
24 Please submit a patch to add help text for this item. 24 Utility for deleting a group account.
25 25
26config CONFIG_ADDUSER 26config CONFIG_ADDUSER
27 bool "adduser" 27 bool "adduser"
28 default n 28 default n
29 help 29 help
30 Please submit a patch to add help text for this item. 30 Utility for creating a new user account.
31 31
32config CONFIG_DELUSER 32config CONFIG_DELUSER
33 bool "deluser" 33 bool "deluser"
34 default n 34 default n
35 help 35 help
36 Please submit a patch to add help text for this item. 36 Utility for deleting a user account.
37 37
38config CONFIG_GETTY 38config CONFIG_GETTY
39 bool "getty" 39 bool "getty"
@@ -45,32 +45,39 @@ config CONFIG_LOGIN
45 bool "login" 45 bool "login"
46 default n 46 default n
47 help 47 help
48 Please submit a patch to add help text for this item. 48 Login is used when signing onto a system.
49 49
50config CONFIG_FEATURE_SECURETTY 50config CONFIG_FEATURE_SECURETTY
51 bool " Support for /etc/securetty" 51 bool " Support for /etc/securetty"
52 default y 52 default y
53 depends on CONFIG_LOGIN 53 depends on CONFIG_LOGIN
54 help 54 help
55 Please submit a patch to add help text for this item. 55 The file /etc/securetty is used by (some versions of) login(1). The
56 file contains the device names of tty lines (one per line, without
57 leading /dev/) on which root is allowed to login.
56 58
57config CONFIG_PASSWD 59config CONFIG_PASSWD
58 bool "passwd" 60 bool "passwd"
59 default n 61 default n
60 help 62 help
61 Please submit a patch to add help text for this item. 63 Passwd changes passwords for user and group accounts. A normal user
64 may only change the password for his/her own account, the super user
65 may change the password for any account. The administrator of a group
66 may change the password for the group.
62 67
63config CONFIG_SU 68config CONFIG_SU
64 bool "su" 69 bool "su"
65 default n 70 default n
66 help 71 help
67 Please submit a patch to add help text for this item. 72 su is used to become another user during a login session. Invoked with-
73 out a username, su defaults to becoming the super user.
68 74
69config CONFIG_SULOGIN 75config CONFIG_SULOGIN
70 bool "sulogin" 76 bool "sulogin"
71 default n 77 default n
72 help 78 help
73 Please submit a patch to add help text for this item. 79 Sulogin is invoked when the system goes into single user
80 mode (this is done through an entry in inittab).
74 81
75config CONFIG_VLOCK 82config CONFIG_VLOCK
76 bool "vlock" 83 bool "vlock"