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


1.3
date	2001.01.28.06.01.12;	author lucas;	state dead;
branches;
next	1.2;

1.2
date	2000.12.18.07.55.33;	author lucas;	state Exp;
branches;
next	1.1;

1.1
date	2000.12.17.07.43.27;	author lucas;	state Exp;
branches;
next	;


desc
@@


1.3
log
@took out tigris-httpd
@
text
@#!/bin/sh
#
# Startup script for the Apache Web Server
#

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

# See how we were called.
TIGRIS=/usr/local/tigris
SANDBOXCTL=$TIGRIS/scripts/sandboxctl

case "$1" in
  start)
	echo -n "Starting tigris-httpd: "
    ./$SANDBOXCTL start
	;;
  stop)
	echo -n "Shutting down tigris-httpd: "
    ./$SANDBOXCTL stop
	;;
  restart)
    echo -n "Restarting tigris-httpd: "
    ./$SANDBOXCTL restart
	;;
  *)
	echo "Usage: $0 {start|stop|restart}"
	exit 1
	;;
esac

exit 0

@


1.2
log
@changed APACHECTL to SANDBOXCTL
@
text
@@


1.1
log
@Initial import of a rc.d script for the tigris web server
@
text
@d11 1
a11 1
APACHECTL=$TIGRIS/scripts/sandboxctl
d16 1
a16 1
    ./$APACHECTL start
d20 1
a20 1
    ./$APACHECTL stop
d24 1
a24 1
    ./$APACHECTL restart
@

