#!/sbin/sh
#

#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.

. /lib/svc/share/xvm_include.sh

case $1 in 
'start')
	/usr/lib/libvirtd -d
	;;

*)
	echo "Usage: $0 start"
	exit 1
	;;
esac	

exit $?
