2009-10-03 10:58:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PREREQ="mdadm mdrun multipath"
|
|
|
|
|
|
|
|
prereqs()
|
|
|
|
{
|
|
|
|
echo "$PREREQ"
|
|
|
|
}
|
|
|
|
|
|
|
|
case $1 in
|
|
|
|
# get pre-requisites
|
|
|
|
prereqs)
|
|
|
|
prereqs
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-06 18:02:51 +02:00
|
|
|
[ ! -e /sbin/lvm ] && exit 0
|
|
|
|
[ ! -e /dev/urandom ] && mknod /dev/urandom c 1 9
|
|
|
|
|
|
|
|
modprobe -q dm-mod >/dev/null 2>&1
|
|
|
|
if [ -e /sys/class/misc/device-mapper ]; then
|
|
|
|
echo "Scanning for Logical Volumes..."
|
|
|
|
eval /sbin/lvm vgscan --ignorelockingfailure
|
|
|
|
echo "Activating Logical Volumes..."
|
|
|
|
eval /sbin/lvm vgchange --ignorelockingfailure -ay
|
2009-10-03 10:58:22 +02:00
|
|
|
fi
|
2009-10-06 18:02:51 +02:00
|
|
|
exit $?
|