#!/bin/sh
#
# Copyright 1999 Sun Microsystems, Inc.  All Rights Reserved
#
# @(#)sunscreenadm.sh	3.1 99/03/21 Sun Microsystems
#
# Start/Stop the SunScreen admin station
#

SS_LIBDIR=/opt/SUNWicg/SunScreen/lib
SS_ETCDIR=/etc/opt/SUNWicg/SunScreen
SS_VARDIR=/var/opt/SUNWicg/SunScreen

case "$1" in

'start')
	if [ -d $SS_VARDIR/logarchive ]
	then
		/bin/rm -f $SS_VARDIR/logarchive/*.sslogmgmt.ssadmticket
	fi

	;;

'stop')
	;;

*)	echo>&2 "Usage: $0 { start | stop }"
	;;
esac

# eof
