openafs/src/packaging/HP-UX/scripts/openafs-eng-man.configure
Paul Weber 4b2f1af543 hpux-packagings-20030619
FIXES 1315

updated packaging for hp-ux 11.00, 11.11 and 11.22
2003-06-19 23:03:29 +00:00

33 lines
654 B
Bash

#!/bin/sh
echo "NOTE: Executing configure script."
#######
#
# (c) Copyright
#
########
set -a
UTILS="/usr/lbin/sw/control_utils"
if [[ ! -f ${UTILS} ]]
then
echo "ERROR: Cannot find ${UTILS}"
exit 1
fi
. ${UTILS}
############################################################################
# Set the global PATH to include OPENAFS software
ROOT=/usr/afs/
mod_pathfile -a MP ${ROOT}man
if [[ $? = 2 ]]
then
echo " /etc/MANPATH already contains the OPENAFS component."
else
echo "NOTE: Processes may need to be restarted to inherit"
echo " ${ROOT}/man in their PATH."
fi