mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
Move utmp/wtmp support to "General configuration" section
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
f6916dbed4
commit
6dbbac5d4f
20
Config.in
20
Config.in
@ -252,6 +252,26 @@ config FEATURE_CLEAN_UP
|
|||||||
Don't enable this unless you have a really good reason to clean
|
Don't enable this unless you have a really good reason to clean
|
||||||
things up manually.
|
things up manually.
|
||||||
|
|
||||||
|
config FEATURE_UTMP
|
||||||
|
bool "Support utmp file"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
The file /var/run/utmp is used to track who is currently logged in.
|
||||||
|
With this option on, certain applets (getty, login, telnetd etc)
|
||||||
|
will create and delete entries there.
|
||||||
|
"who" apples requires this option.
|
||||||
|
|
||||||
|
config FEATURE_WTMP
|
||||||
|
bool "Support wtmp file"
|
||||||
|
default n
|
||||||
|
select FEATURE_UTMP
|
||||||
|
help
|
||||||
|
The file /var/run/wtmp is used to track when users have logged into
|
||||||
|
and logged out of the system.
|
||||||
|
With this option on, certain applets (getty, login, telnetd etc)
|
||||||
|
will append new entries there.
|
||||||
|
"last" apples requires this option.
|
||||||
|
|
||||||
config FEATURE_PIDFILE
|
config FEATURE_PIDFILE
|
||||||
bool "Support writing pidfiles"
|
bool "Support writing pidfiles"
|
||||||
default n
|
default n
|
||||||
|
@ -825,7 +825,7 @@ config FEATURE_WC_LARGE
|
|||||||
config WHO
|
config WHO
|
||||||
bool "who"
|
bool "who"
|
||||||
default n
|
default n
|
||||||
select FEATURE_UTMP
|
depends on FEATURE_UTMP
|
||||||
help
|
help
|
||||||
who is used to show who is logged on.
|
who is used to show who is logged on.
|
||||||
|
|
||||||
|
@ -181,22 +181,6 @@ config GETTY
|
|||||||
help
|
help
|
||||||
getty lets you log in on a tty, it is normally invoked by init.
|
getty lets you log in on a tty, it is normally invoked by init.
|
||||||
|
|
||||||
config FEATURE_UTMP
|
|
||||||
bool "Support utmp file"
|
|
||||||
depends on GETTY || LOGIN || SU || WHO
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
The file /var/run/utmp is used to track who is currently logged in.
|
|
||||||
|
|
||||||
config FEATURE_WTMP
|
|
||||||
bool "Support wtmp file"
|
|
||||||
depends on GETTY || LOGIN || SU || LAST
|
|
||||||
default n
|
|
||||||
select FEATURE_UTMP
|
|
||||||
help
|
|
||||||
The file /var/run/wtmp is used to track when user's have logged into
|
|
||||||
and logged out of the system.
|
|
||||||
|
|
||||||
config LOGIN
|
config LOGIN
|
||||||
bool "login"
|
bool "login"
|
||||||
default n
|
default n
|
||||||
|
@ -317,7 +317,7 @@ config INOTIFYD
|
|||||||
config LAST
|
config LAST
|
||||||
bool "last"
|
bool "last"
|
||||||
default n
|
default n
|
||||||
select FEATURE_WTMP
|
depends on FEATURE_WTMP
|
||||||
help
|
help
|
||||||
'last' displays a list of the last users that logged into the system.
|
'last' displays a list of the last users that logged into the system.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user