#!/bin/ksh
#
#ident	"@(#)preremove	1.5	04/12/08 SMI"
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

# variables
# if S8 or higher 
if [ -f /usr/apache/bin/apachectl ]
then
	/usr/apache/bin/apachectl stop >/dev/null 2>&1 
	if [ -f /etc/apache/httpd.conf ]
	then
		rm /etc/apache/httpd.conf
	fi 
fi

