#! /bin/sh
#
#	This script adds WIMS-related definitions to Apache config.
#	It must be run as root.
#
#	If you want to prohibit the action of this script,
#	insert the following word to httpd.conf (in a commented line):
#	manually_configured_for_wims
#

apache_restart() {
 if [ -x /etc/init.d/httpd ];then
   /etc/init.d/httpd restart
   exit
 else
   /etc/init.d/apache restart
   exit
 fi
}
