#!/sbin/sh
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)http-apache2	1.2	04/11/11 SMI"
#

. /lib/svc/share/smf_include.sh

APACHE_HOME=@CLIENT_BASEDIR@/apache2
CONF_FILE=/etc/apache2/httpd.conf

[ ! -f ${CONF_FILE} ] &&  exit $SMF_EXIT_ERR_CONFIG

case "$1" in
start)
	cmd="start"
	;;
refresh)
	cmd="graceful"
	;;
stop)
	cmd="stop"
	;;
*)
	echo "Usage: $0 {start|stop|refresh}"
	exit 1
	;;
esac

exec ${APACHE_HOME}/bin/apachectl $cmd 2>&1
