hba.conf revision fcf3ce441efd61da9bb2884968af01cb7c1452cc
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
VSL_32_NAME=com.sun.fchba
VSL_64_NAME=com.sun.fchba64
LIB_32_PATH=/usr/lib/libsun_fc.so.1
LIB_64_PATH=/usr/lib/64/libsun_fc.so.1
OBSOLETE_PATH=/usr/lib/sparcv9/libsun_fc.so.1
[ "${BASERDIR}" = "/" ] && BASEDIR=""
CONF_FILE=${BASEDIR}/etc/hba.conf
if [ $1 = install ] ; then
if [ -f ${CONF_FILE} ] ; then
# Copy the original file without the obsoleted path.
grep -v "${OBSOLETE_PATH}" ${CONF_FILE}
# Append entries if missing
if grep "${LIB_32_PATH}" ${CONF_FILE} > /dev/null ; then :
else
echo "${VSL_32_NAME} ${LIB_32_PATH}" || exit 3
fi
# Append entries if missing
if grep "${LIB_64_PATH}" ${CONF_FILE} > /dev/null ; then :
else
echo "${VSL_64_NAME} ${LIB_64_PATH}" || exit 3
fi
else
exit 1
fi
else
# package remove
if [ ! -f ${BASEDIR}/usr/lib/libsun_fc.so.1 ] ; then
echo "Removing conf entries for ${VSL_32_NAME} and ${VSL_64_NAME}" >&2
sed -e '/^'${VSL_32_NAME}'/d' -e '/^'${VSL_64_NAME}'/d' ${CONF_FILE} || exit 2
else
# Use current file as new file, otherwise the file is removed
cat ${CONF_FILE} || exit 2
fi
fi