aboutsummaryrefslogtreecommitdiffstats
path: root/lsb-bootscripts/etc/default/rc.site
diff options
context:
space:
mode:
authorDJ Lucas <dj@linuxfromscratch.org>2011-05-23 05:07:21 +0000
committerDJ Lucas <dj@linuxfromscratch.org>2011-05-23 05:07:21 +0000
commitf3f65e73a3e8e1b7d925be3ee6b0e40b03252804 (patch)
tree062eb7b4c317aca93cbedd8fe29ef63d971468ef /lsb-bootscripts/etc/default/rc.site
parent90b457477d7909f501615eec5a18efd29944298a (diff)
Added stop_on_error parameter to rc.site and cleaned up Begin and End lines.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9552 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lsb-bootscripts/etc/default/rc.site')
-rw-r--r--lsb-bootscripts/etc/default/rc.site16
1 files changed, 11 insertions, 5 deletions
diff --git a/lsb-bootscripts/etc/default/rc.site b/lsb-bootscripts/etc/default/rc.site
index 34f25cc79..1e77b942d 100644
--- a/lsb-bootscripts/etc/default/rc.site
+++ b/lsb-bootscripts/etc/default/rc.site
@@ -1,3 +1,8 @@
+# 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"
@@ -8,14 +13,15 @@ HOSTNAME=<lfs>
UTC=1
CLOCKPARAMS=
-# Manual input is not appropriate on remote systems. Define what happens when
-# an error is encountered that interupts the boot/shutdown proceess
-FAILURE_ACTION="read ENTER"
-
# Export varialbles so that they are inherited by the initscripts
-export BOOTLOG_ENAB HOSTNAME UTC CLOCKPARAMS FAILURE_ACTION
+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