#!/bin/sh

#
# Copyright 2002-2003 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#

# From SUNWudlm/postremove
#

if [ "x$ROOTDIR" = "x/" ]; then
    FS_ROOTDIR=""
 else 
    FS_ROOTDIR="${ROOTDIR}"
 fi

UDLMCTL=${FS_ROOTDIR}/opt/SUNWudlm/bin/udlmctl

if [ -r $UDLMCTL ]
then
	rm $UDLMCTL
fi

exit $?
