#!/bin/sh

PREREQ=""

prereqs()
{
   echo "$PREREQ"
}

case $1 in
prereqs)
   prereqs
   exit 0
   ;;
esac

. /scripts/functions

# This was necessary because LVM autodetect is completely broken.
if [ -x /sbin/vgchange ]; then
   /sbin/vgchange --sysinit -ay >/dev/null
fi
