- Allow variable for HA callout program in /etc/init.d/nfslock (bz 201897)

This commit is contained in:
Steve Dickson 2006-08-16 14:39:56 +00:00
parent 95b1830de1
commit 9f6d6948a6
2 changed files with 8 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
Name: nfs-utils
Version: 1.0.9
Release: 3%{?dist}
Release: 4%{?dist}
Epoch: 1
# group all 32bit related archs
@ -249,6 +249,10 @@ fi
%endif
%changelog
* Wed Aug 16 2006 <SteveD@RedHat.com> 1.0.9-2
- Allow variable for HA callout program in /etc/init.d/nfslock
(bz 201897)
* Wed Aug 02 2006 <wtogami@redhatcom> 1.0.9-3
- add epoch (#196359)

View File

@ -74,6 +74,9 @@ start() {
[ -n "$STATD_PORT" ] && STATDARG="$STATDARG -p $STATD_PORT"
[ -n "$STATD_OUTGOING_PORT" ] \
&& STATDARG="$STATDARG -o $STATD_OUTGOING_PORT"
# See if we have an HA-callout program specified
[ -n "$STATD_HA_CALLOUT" ] \
&& STATDARG="$STATDARG -H $STATD_HA_CALLOUT"
daemon rpc.statd "$STATDARG"
RETVAL=$?
echo