diff options
author | Bill Nottingham <notting@redhat.com> | 2006-11-20 21:11:14 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-11-20 21:11:14 +0000 |
commit | 7727a99c2300846d76df3ca10e06138e68780db5 (patch) | |
tree | 4b3d06296c40b647684a83766bd149947f89cbc7 /rc.d/rc.sysinit | |
parent | 33d453012abfbb44aa5ccc75ab0ada459784c76a (diff) | |
download | initscripts-7727a99c2300846d76df3ca10e06138e68780db5.tar initscripts-7727a99c2300846d76df3ca10e06138e68780db5.tar.gz initscripts-7727a99c2300846d76df3ca10e06138e68780db5.tar.bz2 initscripts-7727a99c2300846d76df3ca10e06138e68780db5.tar.xz initscripts-7727a99c2300846d76df3ca10e06138e68780db5.zip |
- rc.sysinit: run zfcpconf.sh earlier, so devices are available for
LVM usage (#189494)
Diffstat (limited to 'rc.d/rc.sysinit')
-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 1df46101..c85174ce 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -181,6 +181,10 @@ for module in `/sbin/modprobe -c | awk '/^alias[[:space:]]+scsi_hostadapter[0-9] done load_module floppy +# 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 + echo -n $" storage" # Network @@ -535,10 +539,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 |