#!/sbin/sh
#
# Copyright (c) 2002, Sun Microsystems, Inc.
#
#ident  "@(#)postinstall 1.2 01/03/19 SMI"
#

# Solaris 9 and later releases do not provide cs00.  If
# /etc/css.d/cs00.sh exists, cssd starts cs00.sh and the script
# fails and exits because cs00 is not installed.  Then cssd
# restart cs00.sh again, and again, and again.

if [ -f ${BASEDIR}/etc/css.d/cs00.sh ]; then
    /usr/bin/rm -f ${BASEDIR}/etc/css.d/cs00.sh
fi

exit 0
