Change if statments to string comparisons in nfs-utils_env.sh (bz1170353)
Signed-off-by: Steve Dickson <steved@redhat.com>
This commit is contained in:
parent
a6e040b49c
commit
e8edaf20d8
@ -2,7 +2,7 @@ Summary: NFS utilities and supporting clients and daemons for the kernel NFS ser
|
|||||||
Name: nfs-utils
|
Name: nfs-utils
|
||||||
URL: http://sourceforge.net/projects/nfs
|
URL: http://sourceforge.net/projects/nfs
|
||||||
Version: 1.3.1
|
Version: 1.3.1
|
||||||
Release: 4.0%{?dist}
|
Release: 4.1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
|
|
||||||
# group all 32bit related archs
|
# group all 32bit related archs
|
||||||
@ -300,6 +300,9 @@ fi
|
|||||||
/sbin/umount.nfs4
|
/sbin/umount.nfs4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jan 2 2015 Steve Dickson <steved@redhat.com> 1.3.1-4.1
|
||||||
|
- Change if statments to string comparisons in nfs-utils_env.sh (bz 1170354)
|
||||||
|
|
||||||
* Sat Dec 13 2014 Steve Dickson <steved@redhat.com> 1.3.1-4.0
|
* Sat Dec 13 2014 Steve Dickson <steved@redhat.com> 1.3.1-4.0
|
||||||
- Updated to latest upstream RC release: nfs-utils-1-3-2-rc4 (bz 1164477)
|
- Updated to latest upstream RC release: nfs-utils-1-3-2-rc4 (bz 1164477)
|
||||||
- Handle the rpcuser like other created users (bz 1165322)
|
- Handle the rpcuser like other created users (bz 1165322)
|
||||||
|
@ -18,15 +18,15 @@ if [ -n "$LOCKD_TCPPORT" -o -n "$LOCKD_UDPPORT" ]; then
|
|||||||
/sbin/sysctl -w fs.nfs.nlm_udpport=$LOCKD_UDPPORT >/dev/null 2>&1
|
/sbin/sysctl -w fs.nfs.nlm_udpport=$LOCKD_UDPPORT >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$NFSD_V4_GRACE" -gt 0 ]; then
|
if [ -n "$NFSD_V4_GRACE" ]; then
|
||||||
grace="-G $NFSD_V4_GRACE"
|
grace="-G $NFSD_V4_GRACE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$NFSD_V4_LEASE" -gt 0 ]; then
|
if [ -n "$NFSD_V4_LEASE" ]; then
|
||||||
lease="-L $NFSD_V4_LEASE"
|
lease="-L $NFSD_V4_LEASE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$RPCNFSDCOUNT" -gt 0 ]; then
|
if [ -n "$RPCNFSDCOUNT" ]; then
|
||||||
nfsds=$RPCNFSDCOUNT
|
nfsds=$RPCNFSDCOUNT
|
||||||
else
|
else
|
||||||
nfsds=8
|
nfsds=8
|
||||||
|
Loading…
Reference in New Issue
Block a user