diff options
author | Steve Dickson <steved@redhat.com> | 2009-10-09 13:14:52 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2009-10-09 13:14:52 -0400 |
commit | f312676ca61f826efa5d0eb39433c5aa075711ab (patch) | |
tree | d0ad35edb07446dec58d65f47ab03a77f9cb86af | |
parent | 2091bc67253d6dc1f68dba2218593701bfc729c0 (diff) | |
download | nfs-utils-f312676ca61f826efa5d0eb39433c5aa075711ab.tar.gz nfs-utils-f312676ca61f826efa5d0eb39433c5aa075711ab.tar.xz nfs-utils-f312676ca61f826efa5d0eb39433c5aa075711ab.zip |
Make the network transports value in the mount
config file case sensitive, since they are in the
mount command's parsing code.
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | utils/mount/nfsmount.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/mount/nfsmount.conf b/utils/mount/nfsmount.conf index f9fcfcb..991838f 100644 --- a/utils/mount/nfsmount.conf +++ b/utils/mount/nfsmount.conf @@ -24,14 +24,15 @@ # All reads and writes to the 'nfsserver.foo.com' server # will be done with 32k (32768 bytes) block sizes. # -#[ NFSMount_Global_Options ] +[ NFSMount_Global_Options ] # This statically named section defines global mount # options that can be applied on all NFS mount. # # Protocol Version [2,3] # Nfsvers=3 -# Network Transport [Udp,Tcp,Rdma] -# Proto=Tcp +# +# Network Transport [udp,tcp,rdma] (Note: values are case sensitive) +# Proto=tcp # # The number of times a request will be retired before # generating a timeout |