#! /sbin/sh
########
#  Product: InternetSrvcs
#  Fileset: INETSVCS-DTC
#  postremove
#  @(#) $Revision: 1.2.212.1 $
########
#
# (c) Copyright Hewlett-Packard Company, 1993
#
########
#
# Standard initialization
#

UTILS="/usr/lbin/sw/control_utils"
if [[ ! -f $UTILS ]]
then
       echo "ERROR: Cannot find $UTILS"
       exit 1
fi
. $UTILS
exitval=$SUCCESS				# Anticipate success

#######
#
# Start of INETSVCS-DTC postremove process
#

#
#        Remove directories
#

if [[ $SW_ROOT_DIRECTORY = "/" ]]
then
	if ! /sbin/is_local_root
	then
		if [ -d /usr/examples/ddfa ] 
		then 
			rm -rf /usr/examples/ddfa
		fi
	fi
fi

exit $exitval
