aboutsummaryrefslogtreecommitdiff
path: root/loginutils/login.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /loginutils/login.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils/login.c')
-rw-r--r--loginutils/login.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/loginutils/login.c b/loginutils/login.c
index fbdfd2925..39f703f07 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -7,46 +7,46 @@
7//config: default y 7//config: default y
8//config: select FEATURE_SYSLOG 8//config: select FEATURE_SYSLOG
9//config: help 9//config: help
10//config: login is used when signing onto a system. 10//config: login is used when signing onto a system.
11//config: 11//config:
12//config: Note that Busybox binary must be setuid root for this applet to 12//config: Note that Busybox binary must be setuid root for this applet to
13//config: work properly. 13//config: work properly.
14//config: 14//config:
15//config:config LOGIN_SESSION_AS_CHILD 15//config:config LOGIN_SESSION_AS_CHILD
16//config: bool "Run logged in session in a child process" 16//config: bool "Run logged in session in a child process"
17//config: default y if PAM 17//config: default y if PAM
18//config: depends on LOGIN 18//config: depends on LOGIN
19//config: help 19//config: help
20//config: Run the logged in session in a child process. This allows 20//config: Run the logged in session in a child process. This allows
21//config: login to clean up things such as utmp entries or PAM sessions 21//config: login to clean up things such as utmp entries or PAM sessions
22//config: when the login session is complete. If you use PAM, you 22//config: when the login session is complete. If you use PAM, you
23//config: almost always would want this to be set to Y, else PAM session 23//config: almost always would want this to be set to Y, else PAM session
24//config: will not be cleaned up. 24//config: will not be cleaned up.
25//config: 25//config:
26//config:config LOGIN_SCRIPTS 26//config:config LOGIN_SCRIPTS
27//config: bool "Support login scripts" 27//config: bool "Support login scripts"
28//config: depends on LOGIN 28//config: depends on LOGIN
29//config: default y 29//config: default y
30//config: help 30//config: help
31//config: Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT 31//config: Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
32//config: just prior to switching from root to logged-in user. 32//config: just prior to switching from root to logged-in user.
33//config: 33//config:
34//config:config FEATURE_NOLOGIN 34//config:config FEATURE_NOLOGIN
35//config: bool "Support /etc/nologin" 35//config: bool "Support /etc/nologin"
36//config: default y 36//config: default y
37//config: depends on LOGIN 37//config: depends on LOGIN
38//config: help 38//config: help
39//config: The file /etc/nologin is used by (some versions of) login(1). 39//config: The file /etc/nologin is used by (some versions of) login(1).
40//config: If it exists, non-root logins are prohibited. 40//config: If it exists, non-root logins are prohibited.
41//config: 41//config:
42//config:config FEATURE_SECURETTY 42//config:config FEATURE_SECURETTY
43//config: bool "Support /etc/securetty" 43//config: bool "Support /etc/securetty"
44//config: default y 44//config: default y
45//config: depends on LOGIN 45//config: depends on LOGIN
46//config: help 46//config: help
47//config: The file /etc/securetty is used by (some versions of) login(1). 47//config: The file /etc/securetty is used by (some versions of) login(1).
48//config: The file contains the device names of tty lines (one per line, 48//config: The file contains the device names of tty lines (one per line,
49//config: without leading /dev/) on which root is allowed to login. 49//config: without leading /dev/) on which root is allowed to login.
50 50
51//applet:/* Needs to be run by root or be suid root - needs to change uid and gid: */ 51//applet:/* Needs to be run by root or be suid root - needs to change uid and gid: */
52//applet:IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE)) 52//applet:IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE))