The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 08-25-2008
otheus's Avatar
otheus otheus is offline Forum Staff  
Moderator ala Mode
  
 

Join Date: Feb 2007
Location: Innsbruck, Austria
Posts: 1,886
Dude, the shell script is not failing... the "apachectl" command is. Look at start4.log when it fails. You can help yourself by automatically emailing yourself the logfile when it fails. Just ADD:
Code:
if [ $? -gt 0 ]; then 
  mail -s "apache failed with $?" $USER < /tmp/start.4.log
fi