---
Henry A. Cheung E-Mail : henry_at_zpac20.zpo.dec.com
UNIX Sales Support Phone : (065)2907716
Digital Equipment Singapore FAX : (065)2986493
#!/sbin/sh
PATH=/sbin:/usr/sbin:/usr/bin:/usr/local/etc/httpd
export PATH
case "$1" in
'start')
pid=`/bin/ps -e | grep /usr/local/etc/httpd/httpd | grep -v grep | sed -e 's/^ *//' -e 's/ .*//' | head -1`
if [ "X$pid" = "X" ]
then
if /usr/local/etc/httpd/httpd; then
echo "httpd www services is started."
else
echo "Unable to start httpd www services"
fi
fi
;;
'stop')
pid=`/bin/ps -e | grep /usr/local/etc/httpd/httpd | grep -v grep | sed -e 's/^ *//' -e 's/ .*//' | head -1`
if [ "X$pid" != "X" ]
then
/bin/kill $pid
fi
;;
*)
echo "usage: $0 {start|stop}"
;;
esac
Received on Fri Apr 07 1995 - 04:42:38 NZST
This archive was generated by hypermail 2.4.0 : Wed Nov 08 2023 - 11:53:45 NZDT