From d69b11e73a70c9c0ed6cd888ff4ac4eb3e877ec2 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Wed, 4 Jun 2003 00:22:45 +0000 Subject: fixed a rc.sysinit bug and moved conf.d parsing to the top of rc.conf --- rc.conf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'rc.conf') diff --git a/rc.conf b/rc.conf index 000bad4..e70b3db 100644 --- a/rc.conf +++ b/rc.conf @@ -2,6 +2,13 @@ # /etc/rc.conf - Main Configuration for Arch Linux # +# +# Load any configuration settings in /etc/conf.d +# +for cfg in /etc/conf.d/*; do + [ -r $cfg ] && source $cfg +done + # # Localization # @@ -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 -- cgit v1.2.3