Sophie

Sophie

distrib > Scientific%20Linux > 5x > i386 > by-pkgid > 158ed500d1bf3bef278fe4ca8e35d5c4 > scriptlet

libhbalinux-1.0.7-3.el5.i386.rpm

POSTIN

/bin/sh
/sbin/ldconfig
ORG=org.open-fcoe.libhbalinux
LIB=/usr/lib/libhbalinux.so.2.0.2
STR="$ORG	$LIB"
CONF=/etc/hba.conf
if test -f $CONF; then
  grep -E -q ^[[:space:]]*$ORG[[:space:]]+$LIB $CONF
  if test $? -ne 0; then
    echo $STR >> $CONF;
  fi
fi

POSTUN

/bin/sh
/sbin/ldconfig
ORG=org.open-fcoe.libhbalinux
CONF=/etc/hba.conf
if test -f $CONF; then
  grep -v $ORG $CONF > /tmp/hba.conf
  mv /tmp/hba.conf /etc/hba.conf
fi