diff options
author | Bill Nottingham <notting@redhat.com> | 2004-11-02 05:29:28 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-11-02 05:29:28 +0000 |
commit | 37631026729a5c2ca291e44703af6e197e0b48d5 (patch) | |
tree | 9cf0b330677ef7c3068b92216627f2ca16140c10 | |
parent | 3f08edfe6e00f4e129a862deb8baa8c33bf8dadf (diff) | |
download | initscripts-37631026729a5c2ca291e44703af6e197e0b48d5.tar initscripts-37631026729a5c2ca291e44703af6e197e0b48d5.tar.gz initscripts-37631026729a5c2ca291e44703af6e197e0b48d5.tar.bz2 initscripts-37631026729a5c2ca291e44703af6e197e0b48d5.tar.xz initscripts-37631026729a5c2ca291e44703af6e197e0b48d5.zip |
move zfcp before raid/lvm
-rwxr-xr-x | rc.d/rc.sysinit | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 6652fc03..c5190a2b 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -306,6 +306,10 @@ if [ -d /proc/acpi ]; then done fi +# configure all zfcp (scsi over fibrechannel) devices before trying to mount them +# zfcpconf.sh exists only on mainframe +[ -x /sbin/zfcpconf.sh ] && /sbin/zfcpconf.sh + # RAID setup update_boot_stage RCraid echo "raidautorun /dev/md0" | nash --quiet @@ -480,10 +484,6 @@ mount -f /dev/pts [ -f /proc/bus/usb/devices ] && mount -f -t usbfs usbfs /proc/bus/usb [ -e /dev/.devfsd ] && mount -f -t devfs devfs /dev -# configure all zfcp (scsi over fibrechannel) devices before trying to mount them -# zfcpconf.sh exists only on mainframe -[ -x /sbin/zfcpconf.sh ] && /sbin/zfcpconf.sh - # The root filesystem is now read-write, so we can now log # via syslog() directly.. if [ -n "$IN_INITLOG" ]; then |