aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-09-20 17:22:09 +0000
committerBill Nottingham <notting@redhat.com>2005-09-20 17:22:09 +0000
commit88954b1c41cbe771f7875a96f03a2f7c4d4483a5 (patch)
tree6900d48fb092072b2599e9e021c3722b281a8420
parent10a6710ea56bf35763d5ac023f51f5cdf2c3482a (diff)
downloadinitscripts-88954b1c41cbe771f7875a96f03a2f7c4d4483a5.tar
initscripts-88954b1c41cbe771f7875a96f03a2f7c4d4483a5.tar.gz
initscripts-88954b1c41cbe771f7875a96f03a2f7c4d4483a5.tar.bz2
initscripts-88954b1c41cbe771f7875a96f03a2f7c4d4483a5.tar.xz
initscripts-88954b1c41cbe771f7875a96f03a2f7c4d4483a5.zip
use multipath.static (#168321)
-rwxr-xr-xrc.d/rc.sysinit6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index c53f0c18..d94ee84d 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -479,7 +479,7 @@ state=`awk '/ \/ / && ($3 !~ /rootfs/) { print $4 }' /proc/mounts`
action $"Remounting root filesystem in read-write mode: " mount -n -o remount,rw /
# LVM2 initialization
-if [ -x /sbin/lvm.static -o -x /sbin/multipath -o -x /sbin/dmraid ]; then
+if [ -x /sbin/lvm.static -o -x /sbin/multipath.static -o -x /sbin/dmraid ]; then
if ! LC_ALL=C fgrep -q "device-mapper" /proc/devices 2>/dev/null ; then
modprobe dm-mod >/dev/null 2>&1
fi
@@ -488,9 +488,9 @@ if [ -x /sbin/lvm.static -o -x /sbin/multipath -o -x /sbin/dmraid ]; then
fi
if [ -c /dev/mapper/control ]; then
- if [ -f /etc/multipath.conf -a -x /sbin/multipath ]; then
+ if [ -f /etc/multipath.conf -a -x /sbin/multipath.static ]; then
modprobe dm-multipath >/dev/null 2>&1
- /sbin/multipath -v 0
+ /sbin/multipath.static -v 0
fi
if [ -x /sbin/dmraid ]; then