]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- added including /etc/rc.d/rc.modules for loading modules before starting
authorkloczek <kloczek@pld-linux.org>
Thu, 9 Dec 1999 12:31:53 +0000 (12:31 +0000)
committerkloczek <kloczek@pld-linux.org>
Thu, 9 Dec 1999 12:31:53 +0000 (12:31 +0000)
  all services and initializing raid deveces.

svn-id: @606

rc.d/rc.sysinit

index 1d56a77316b143aed4b03653f822c64023968f41..ce5d78412e5706c5aa6cfd52eddd93473b5a214f 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # /etc/rc.d/rc.sysinit - run once at boot time
-# $Id: rc.sysinit,v 1.37 1999/11/09 00:12:35 kloczek Exp $
+# $Id: rc.sysinit,v 1.38 1999/12/09 12:31:53 kloczek Exp $
 #
 # Taken in part from Miquel van Smoorenburg's bcheckrc.
 # Changes:      Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
@@ -199,6 +199,11 @@ if [ -f /proc/sys/kernel/modprobe ]; then
        echo "/sbin/modprobe" > /proc/sys/kernel/modprobe
 fi
 
+# Load modules
+if [ -f /etc/rc.d/rc.modules ]; then
+       /etc/rc.d/rc.modules
+fi
+
 # Add raid devices
 if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
        show "Starting up RAID devices."; started
This page took 0.036051 seconds and 4 git commands to generate.