#!/bin/sh
#
# Copyright (c) 2002 by Sun Microsystems, Inc.
# All rights reserved
#
# postbackout script
#
# Need to create the hard link /etc/rcS.d/S29sunips.  Put system
# back to FCS mode

PATH=/bin:/usr/bin:/usr/sbin

if [ "$ROOTDIR" = "/" ]; then
   cd /etc/rcS.d
   ln ../init.d/sunipsinit S29sunips
else
   cd $ROOTDIR/etc/rcS.d
   ln ../init.d/sunipsinit S29sunips
fi

exit 0
