#! /sbin/sh

##############
# Product: Streams:TIO
# Fileset: STRTIO-KRN
# unconfigure
# @(#) $Revision: 1.3.98.2 $
##############
#
# (c) Copyright Hewlett-Packard Company, 1993
#
#####################

#set -a                          # Export all variables

SUCCESS=0			# SDU expected return codes
WARNING=2
FAILURE=1

exitval=$SUCCESS                # Anticipate success

#UTILS=/usr/lbin/sw/control_utils
#if [[ ! -f $UTILS ]]
#then
#    print "ERROR:   Cannot find the sh functions library $UTILS."
#    exit $FAILURE
#fi
#. $UTILS

#set_env		# sets ARCH, PATH, ROOT, PRODUCT, & FILESET

################################
#			       #
# Remove Device Special Files. #
#			       #
################################

#   rm -rf ${SW_ROOT_DIRECTORY}dev/ptmx > /dev/null 2>&1
#   rm -rf ${SW_ROOT_DIRECTORY}dev/pts  > /dev/null 2>&1

    rm -rf /dev/ptmx > /dev/null 2>&1
    rm -rf /dev/pts  > /dev/null 2>&1

#############
# Finished. #
#############

exit $exitval
