home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
rescue
/
sbin
/
mpath_id
< prev
next >
Wrap
Text File
|
2006-11-29
|
296b
|
20 lines
#!/bin/sh
major=$1
minor=$2
mpstatus=$(/sbin/dmsetup status -j $major -m $minor --target multipath)
if [ -z "$mpstatus" ]; then
exit 1
fi
mpid=$(/sbin/dmsetup info -c --noopencount --noheadings -o name -j $major -m $minor)
if [ -z "$mpid" ]; then
exit 1
fi
echo ID_MPATH=\"$mpid\"
exit 0