#!/bin/bash # # corz.org 2000-> # # this is a handy script to put in PATH, usually /usr/local/bin # see "ra" for more details # # APACHE TEST! echo " " echo "Testing apache configuration.." echo " " if [ -e /usr/local/apache2/bin/apachectl ];then echo " " sudo /usr/local/apache2/bin/apachectl configtest exit 0 fi if [ -e /Library/Apache2/bin/apachectl ];then echo " " sudo /Library/Apache2/bin/apachectl configtest exit 0 fi if [ -e /opt/Apache2/bin/apachectl ];then echo " " sudo /opt/Apache2/bin/apachectl configtest exit 0 fi if [ -e /usr/sbin/apache2ctl ];then echo " " sudo /usr/sbin/apache2ctl configtest exit 0 fi if [ -e /usr/sbin/apachectl ];then echo " " sudo /usr/sbin/apachectl configtest exit 0 fi echo " " sudo /usr/local/apache/bin/apachectl configtest