#! /bin/sh

# lvmcfg should not be used on architectures that use partman
# Check to see if partitioner is installed, which is what all
# other architectures use

if [ -d /usr/share/partitioner ]; then
	exit 0
else
	exit 1
fi
