aboutsummaryrefslogtreecommitdiff
path: root/rc.conf
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2011-12-26 13:33:43 +0100
committerTom Gundersen <teg@jklm.no>2011-12-26 13:33:43 +0100
commit8287372cd60ac4167ba00610f1ad604808a1d9d0 (patch)
treeeaf2f8c6eb00a00f3f5c38ef24d94cd48cd0ad36 /rc.conf
parent38fb6e378f153ceec01b9570a01ec4b7a029661d (diff)
downloadinitscripts-8287372cd60ac4167ba00610f1ad604808a1d9d0.tar.xz
tweaked the default rc.conf a bit
Many env vars in rc.conf can stay unset in most cases, make this clear by keeping them empty by default and recommend keeping them like that if possible. Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'rc.conf')
-rw-r--r--rc.conf14
1 files changed, 7 insertions, 7 deletions
diff --git a/rc.conf b/rc.conf
index d91dff7..414c535 100644
--- a/rc.conf
+++ b/rc.conf
@@ -6,10 +6,6 @@
# LOCALIZATION
# -----------------------------------------------------------------------
#
-# LOCALE: available languages can be listed with the 'locale -a' command
-# LANG in /etc/locale.conf takes precedence
-# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
-# startup and during the boot process. If set to 'no', the C locale is used.
# HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# Note: Using "localtime" is discouraged, using "" makes hwclock fall back
@@ -19,15 +15,19 @@
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
+# LOCALE: available languages can be listed with the 'locale -a' command
+# LANG in /etc/locale.conf takes precedence
+# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
+# startup and during the boot process. If set to 'no', the C locale is used.
# USECOLOR: use ANSI color sequences in startup messages
#
-LOCALE="en_US.UTF-8"
-DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Canada/Pacific"
-KEYMAP="us"
+KEYMAP=
CONSOLEFONT=
CONSOLEMAP=
+LOCALE=
+DAEMON_LOCALE="no"
USECOLOR="yes"
# -----------------------------------------------------------------------