#! /sbin/sh
####################################
#  Product: ixPython
#  Fileset: Latest
#  postremove
#  (c) Copyright Hewlett-Packard Company
####################################
UTILS="/usr/lbin/sw/control_utils"
    if [[ ! -f $UTILS ]]
    then
        echo "ERROR: Cannot find $UTILS"
        exit 1
    fi
    . $UTILS
exitval=$SUCCESS
####################################
# Remove Directories
####################################
rm -rf /opt/iexpress/python
####################################
exit $exitval
####################################

