head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.07.13.03.26.54;	author manoj;	state dead;
branches;
next	1.1;

1.1
date	2000.05.19.23.35.55;	author manoj;	state Exp;
branches;
next	;


desc
@@


1.2
log
@/usr/tigris -> __SANDBOX__ in a few spots.
@
text
@#!/bin/sh
#
# Startup script for Tigris's Apache Web Server 
#
# chkconfig: 345 85 15
# description: Tigris is developer groupware. This is the web server.
# processname: httpd
# pidfile: /usr/tigris/logs/httpd.pid

# Source function library.
. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
  start)
	echo -n "Starting tigris: "
	/usr/tigris/scripts/apachectl start
	echo
	touch /var/lock/subsys/tigris
	;;
  stop)
	echo -n "Shutting down tigris: "
	/usr/tigris/scripts/apachectl stop
	echo
	rm -f /var/lock/subsys/tigris /usr/tigris/logs/httpd.pid
	;;
  restart)
	$0 stop
	$0 start
	;;
  reload)
	echo -n "Reloading tigris: "
	/usr/tigris/scripts/apachectl restart
	echo
	;;
  *)
	echo "Usage: $0 {start|stop|restart|reload}"
	exit 1
	;;
esac

exit 0

@


1.1
log
@Startup script for httpd when running with Tigris.
@
text
@@

