1
0

rc.site 674 B

123456789101112131415161718192021222324252627
  1. # Begin /etc/default/rc.site
  2. # Global variable inherited by initscripts are in caps
  3. # Local variables for the rc script are in lowercase
  4. # Bootlogging (requires a tempfs mount)
  5. BOOTLOG_ENAB="yes"
  6. # Hostname
  7. HOSTNAME=<lfs>
  8. # System time variables
  9. UTC=1
  10. CLOCKPARAMS=
  11. # Export varialbles so that they are inherited by the initscripts
  12. export BOOTLOG_ENAB HOSTNAME UTC CLOCKPARAMS
  13. # Interactive startup
  14. iprompt="yes" # Wether to display the interactive boot promp
  15. itime="2" # The ammount of time (in seconds) to display the prompt
  16. # Manual input is not appropriate on remote systems. Wait for user input on
  17. # script error?
  18. stop_on_error="yes"
  19. # End /etc/default/rc.site