aboutsummaryrefslogtreecommitdiff
path: root/rc.conf
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2003-06-04 00:22:45 +0000
committerJudd Vinet <judd@archlinux.org>2003-06-04 00:22:45 +0000
commitd69b11e73a70c9c0ed6cd888ff4ac4eb3e877ec2 (patch)
tree5e9f700d1c9c06f65d0143382eef71ab0f4e735d /rc.conf
parent18c7679d90ca5c1c9508548c35c0a4ea14ca4d6f (diff)
downloadinitscripts-d69b11e73a70c9c0ed6cd888ff4ac4eb3e877ec2.tar.xz
fixed a rc.sysinit bug and moved conf.d parsing to the top of rc.conf
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 000bad4..e70b3db 100644
--- a/rc.conf
+++ b/rc.conf
@@ -3,6 +3,13 @@
#
#
+# Load any configuration settings in /etc/conf.d
+#
+for cfg in /etc/conf.d/*; do
+ [ -r $cfg ] && source $cfg
+done
+
+#
# Localization
#
# Note: HARDWARECLOCK is either "UTC" or "localtime"
@@ -47,11 +54,4 @@ ROUTES=(!gateway)
#
DAEMONS=(!pcmcia network crond inetd)
-#
-# Load any configuration settings in /etc/conf.d
-#
-for cfg in /etc/conf.d/*; do
- [ -r $cfg ] && source $cfg
-done
-
# End of file