#!/bin/sh
#
#
#
if [ `/usr/ucb/whoami` = "root" ]; then
  /export/home/local/apache_1.3.1/sbin/apachectl stop
else
  echo "You must be root to run this command."
fi
