#!/bin/sh

WITHOUT_RC_COMPAT=1
. /etc/init.d/functions

# Turn off LVM
VGCHANGE=/sbin/vgchange
if [ -x "$VGCHANGE" ]; then
    action "Turn off LVM:" "$VGCHANGE" -a n
fi
