#!/sbin/sh
#------------------------------------------------------------------#
#
# HPUX_ID: @(#) $Revision: 1.72 $ generated on Fri Jan 31 14:58:56 MST 1997
#
# (c)Copyright 1983-1996 Hewlett-Packard Co.,  All Rights Reserved.
#
#------------------------------------------------------------------#
########
#  Product: PHCO_23262
#  Fileset: ADMN-ENG-A-MAN
#  unconfigure
########
    
PATH=/sbin:/usr/sbin:$PATH:/usr/bin

set -a          # Export all vars
exitval=0       # Anticipate success :  1 = failure  2 = warning

UTILS="/usr/lbin/sw/control_utils"

if [ ! -f $UTILS ]; then
    echo "ERROR:   Can't find $UTILS"
    exit 1
fi

. $UTILS


exitval=$SUCCESS                     #Anticipate success

###############################################################################
#  delete path /opt/hparray/share/man from /etc/MANPATH

mod_pathfile -d MP /opt/hparray/share/man

###############################################################################
#  delete path to /opt/hparray/share/man/%L from /etc/MANPATH

mod_pathfile -d MP /opt/hparray/share/man/%L

exit $exitval

