| 123456789101112131415161718192021222324252627 | # 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"# HostnameHOSTNAME=<lfs># System time variablesUTC=1CLOCKPARAMS=# Export varialbles so that they are inherited by the initscriptsexport BOOTLOG_ENAB HOSTNAME UTC CLOCKPARAMS # Interactive startupiprompt="yes" # Wether to display the interactive boot prompitime="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
 |