aboutsummaryrefslogtreecommitdiff
path: root/rc.conf.5.txt
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.5.txt
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.5.txt')
-rw-r--r--rc.conf.5.txt43
1 files changed, 22 insertions, 21 deletions
diff --git a/rc.conf.5.txt b/rc.conf.5.txt
index e28e9ad..56a163f 100644
--- a/rc.conf.5.txt
+++ b/rc.conf.5.txt
@@ -22,38 +22,28 @@ hardware, networking and daemons.
Localization[[L]]
-----------------
-*LOCALE*::
- This sets your system language, which will be used by all i18n-friendly applications and utilities.
- See `locale -a` (or locale.gen) for available options. LANG in /etc/locale.conf takes precedence.
- Default: "en_US.UTF-8"
-
-*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.
- Default: "no"
+*TIMEZONE*::
+ Specifies your time zone. Possible time zones are the relative path to a zoneinfo file starting
+ from the directory /usr/share/zoneinfo. For example, a German timezone would be Europe/Berlin,
+ which refers to the file /usr/share/zoneinfo/Europe/Berlin.
+ Note: if unset, the value in /etc/localtime is used unchanged
+ Default: "Canada/Pacific"
*HARDWARECLOCK*::
How to interpret/update the hardware clock. (used by hwclock)
Options:
- - "": fall back to the value in /var/lib/hwclock/adjfile.
- - "UTC": most robust, allows operating systems to abstract local time and ease DST. (recommended)
+ - empty: fall back to the value in /var/lib/hwclock/adjfile, which defaults to UTC. (recommended)
+ - "UTC": most robust, allows operating systems to abstract local time and ease DST.
- "localtime": apply timezone (and DST) in hardwareclock: discouraged.
Choose this if you dualboot with an OS which cannot handle UTC BIOS times correctly, like Windows.
- any other value will result in the hardware clock being left untouched (useful for virtualization)
- Default: "UTC"
-
-*TIMEZONE*::
- Specifies your time zone. Possible time zones are the relative path to a zoneinfo file starting
- from the directory /usr/share/zoneinfo. For example, a German timezone would be Europe/Berlin,
- which refers to the file /usr/share/zoneinfo/Europe/Berlin.
- Note: if unset, the value in /etc/localtime is used unchanged
- Default: "Canada/Pacific"
+ Default: empty
*KEYMAP*::
Defines the keymap to load with the loadkeys program on bootup.
Possible keymaps are found in /usr/share/kbd/keymaps. Please note that this
- setting is only valid for your TTYs, not any graphical window managers or X!
- Defalut: "us"
+ setting is only valid for your TTYs, not any graphical window managers or X.
+ Defalut: empty
*CONSOLEFONT*::
Defines the console font to load with the setfont program on bootup.
@@ -69,6 +59,17 @@ Localization[[L]]
as it only affects the output of Linux console applications.
Default: empty
+*LOCALE*::
+ This sets your system language, which will be used by all i18n-friendly applications and utilities.
+ See `locale -a` (or locale.gen) for available options. LANG in /etc/locale.conf takes precedence.
+ If unset, it falls back to the C locale.
+ Default: empty
+
+*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.
+ Default: "no"
+
*USECOLOR*::
use ANSI color sequences in startup messages
Default: "yes"