mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-21 06:28:02 +00:00
f3f65e73a3
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9552 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
28 lines
674 B
Plaintext
28 lines
674 B
Plaintext
# Begin /etc/default/rc.site
|
|
|
|
# Global variable inherited by initscripts are in caps
|
|
# Local variables for the rc script are in lowercase
|
|
|
|
# Bootlogging (requires a tempfs mount)
|
|
BOOTLOG_ENAB="yes"
|
|
|
|
# Hostname
|
|
HOSTNAME=<lfs>
|
|
|
|
# System time variables
|
|
UTC=1
|
|
CLOCKPARAMS=
|
|
|
|
# Export varialbles so that they are inherited by the initscripts
|
|
export BOOTLOG_ENAB HOSTNAME UTC CLOCKPARAMS
|
|
|
|
# Interactive startup
|
|
iprompt="yes" # Wether to display the interactive boot promp
|
|
itime="2" # The ammount of time (in seconds) to display the prompt
|
|
|
|
# Manual input is not appropriate on remote systems. Wait for user input on
|
|
# script error?
|
|
stop_on_error="yes"
|
|
|
|
# End /etc/default/rc.site
|