#!/bin/bash
#
# This script is needed to upgrade apache from web interface
# without giving a blank page
# HUP and USR1 signals does not restart a new version
#
# $Id: restarthttpd 738 2007-11-18 07:32:43Z owes $
#

/bin/sleep 10;# give time at the page to refresh
/bin/killall -9 httpd
/usr/sbin/httpd
