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:
Steve Dickson 2015-01-02 08:35:31 -05:00
parent a6e040b49c
commit e8edaf20d8
2 changed files with 7 additions and 4 deletions

View File

@ -2,7 +2,7 @@ Summary: NFS utilities and supporting clients and daemons for the kernel NFS ser
Name: nfs-utils
URL: http://sourceforge.net/projects/nfs
Version: 1.3.1
Release: 4.0%{?dist}
Release: 4.1%{?dist}
Epoch: 1
# group all 32bit related archs
@ -300,6 +300,9 @@ fi
/sbin/umount.nfs4
%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
- Updated to latest upstream RC release: nfs-utils-1-3-2-rc4 (bz 1164477)
- Handle the rpcuser like other created users (bz 1165322)

View File

@ -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
fi
if [ "$NFSD_V4_GRACE" -gt 0 ]; then
if [ -n "$NFSD_V4_GRACE" ]; then
grace="-G $NFSD_V4_GRACE"
fi
if [ "$NFSD_V4_LEASE" -gt 0 ]; then
if [ -n "$NFSD_V4_LEASE" ]; then
lease="-L $NFSD_V4_LEASE"
fi
if [ "$RPCNFSDCOUNT" -gt 0 ]; then
if [ -n "$RPCNFSDCOUNT" ]; then
nfsds=$RPCNFSDCOUNT
else
nfsds=8