Added "$RQUOTAD_PORT" variable to nfs.init which allows the rpc.rquotad to
use a predefined port (bz# 124676)
This commit is contained in:
parent
03bb532a11
commit
44d986f2cf
@ -1,7 +1,7 @@
|
|||||||
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
|
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
|
||||||
Name: nfs-utils
|
Name: nfs-utils
|
||||||
Version: 1.0.6
|
Version: 1.0.6
|
||||||
Release: 37
|
Release: 38
|
||||||
|
|
||||||
# group all 32bit related archs
|
# group all 32bit related archs
|
||||||
%define all_32bit_archs i386 i686 athlon
|
%define all_32bit_archs i386 i686 athlon
|
||||||
@ -263,6 +263,11 @@ fi
|
|||||||
%config /etc/rc.d/init.d/nfslock
|
%config /etc/rc.d/init.d/nfslock
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 14 2004 Steve Dickson <SteveD@RedHat.com>
|
||||||
|
- Added "$RQUOTAD_PORT" variable to nfs.init which
|
||||||
|
allows the rpc.rquotad to use a predefined port
|
||||||
|
(bz# 124676)
|
||||||
|
|
||||||
* Fri Oct 1 2004 <SteveD@RedHat.com
|
* Fri Oct 1 2004 <SteveD@RedHat.com
|
||||||
- Incorporate some clean up code from Ulrich Drepper (bz# 134025)
|
- Incorporate some clean up code from Ulrich Drepper (bz# 134025)
|
||||||
- Fixed the chkconfig number in the rpcgssd, rpcidmapd, and
|
- Fixed the chkconfig number in the rpcgssd, rpcidmapd, and
|
||||||
|
4
nfs.init
4
nfs.init
@ -60,7 +60,9 @@ case "$1" in
|
|||||||
|
|
||||||
if [ -n "$RQUOTAD" -a "$RQUOTAD" != "no" ]; then
|
if [ -n "$RQUOTAD" -a "$RQUOTAD" != "no" ]; then
|
||||||
echo -n $"Starting NFS quotas: "
|
echo -n $"Starting NFS quotas: "
|
||||||
daemon rpc.rquotad
|
[ -n "$RQUOTAD_PORT" ] \
|
||||||
|
&& RPCRQUOTADOPTS="$RPCRQUOTADOPTS -p $RQUOTAD_PORT"
|
||||||
|
daemon rpc.rquotad $RPCRQUOTADOPTS
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
echo -n $"Starting NFS daemon: "
|
echo -n $"Starting NFS daemon: "
|
||||||
|
Loading…
Reference in New Issue
Block a user