aboutsummaryrefslogtreecommitdiff
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
parent18c7679d90ca5c1c9508548c35c0a4ea14ca4d6f (diff)
downloadinitscripts-d69b11e73a70c9c0ed6cd888ff4ac4eb3e877ec2.tar.xz
fixed a rc.sysinit bug and moved conf.d parsing to the top of rc.conf
-rw-r--r--rc.conf14
-rwxr-xr-xrc.sysinit2
2 files changed, 8 insertions, 8 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
diff --git a/rc.sysinit b/rc.sysinit
index 4d92070..ee8a39b 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -17,7 +17,7 @@ status "Starting DevFS Daemon" /sbin/devfsd /dev
# /proc is temporarily mounted to check for LVM support - it is re-mounted
# later from /etc/fstab
-/bin/mount -t proc none /proc
+/bin/mount -n -t proc none /proc
if [ -f /proc/lvm/global -a -x /sbin/vgchange ]; then
stat_busy "Scanning for LVM groups"
/sbin/vgchange -a y