#!/bin/sh
#
#
#
if [ `/usr/ucb/whoami` = "thor" ]; then
  echo "kill -HUP `cat /export/home/thor/httpd/logs/httpd.pid`"
  kill -HUP `cat /export/home/thor/httpd/logs/httpd.pid`
  echo "HTTPD restarted."
else
  echo "You must be thor to run this command."
fi
