#! /bin/sh
#
# Copyright (c) 2003 by Sun Microsystems, Inc.
# All rights reserved.
#
#
#
# Remove /etc/netboot Directory 

if [ ! -d $ROOTDIR/etc/netboot ]; then
  exit
fi
 
/usr/bin/rm -rf  $ROOTDIR/etc/netboot 
exit 0
