#! /sbin/sh
########
#  Product: HP E1496
#  Fileset: HPE1496_RUN
#  configure
#  @(#) $Revision: 1.3 $
########
#
# (c) Copyright Hewlett-Packard Company, 1997
#
########

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

################################################################################

    mod_pathfile -i P /opt/hp75000/d20/bin noprecedenceneeded
        retval=$?
        if [[ $retval -eq $FAILURE ]]
        then
                echo "\
WARNING: Could not add \"/opt/hp75000/d20/bin\" to /etc/PATH."
                exitval=$WARNING
        fi

    mod_pathfile -i MP /opt/hp75000/d20/man noprecedenceneeded
        retval=$?
        if [[ $retval -eq $FAILURE ]]
        then
                echo "\
WARNING: Could not add \"/opt/hp75000/d20/man\" to /etc/MANPATH."
                exitval=$WARNING
        fi

exit $exitval
