summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xruncthon12
1 files changed, 6 insertions, 6 deletions
diff --git a/runcthon b/runcthon
index 8c516f6..7ee5438 100755
--- a/runcthon
+++ b/runcthon
@@ -19,13 +19,13 @@ sec=$5
if [ $vers = "4" ]; then
if [ -n "$sec" ] ; then
if [ $minver -gt 0 ]; then
- mntargs="-F nfs4 -o proto=$proto,sec=$sec,minorversion=$minver"
+ mntargs="-F nfs4 -o proto=$proto,sec=$sec,v4.$minver"
else
mntargs="-F nfs4 -o proto=$proto,sec=$sec"
fi
else
if [ $minver -gt 0 ]; then
- mntargs="-F nfs4 -o proto=$proto,minorversion=$minver"
+ mntargs="-F nfs4 -o proto=$proto,v4.$minver"
else
mntargs="-F nfs4 -o proto=$proto"
fi
@@ -36,9 +36,9 @@ sec=$5
fi
elif [ $vers = "41" ]; then
if [ -n "$sec" ] ; then
- mntargs="-F nfs4 -o proto=$proto,sec=$sec,minorversion=1"
+ mntargs="-F nfs4 -o proto=$proto,sec=$sec,v4.1"
else
- mntargs="-F nfs4 -o proto=$proto,minorversion=1"
+ mntargs="-F nfs4 -o proto=$proto,v4.1"
fi
if [ "$proto" = "rdma" ] ; then
mntargs="$mntargs,port=20049"
@@ -46,9 +46,9 @@ sec=$5
fi
elif [ $vers = "42" ]; then
if [ -n "$sec" ] ; then
- mntargs="-F nfs4 -o proto=$proto,sec=$sec,minorversion=2"
+ mntargs="-F nfs4 -o proto=$proto,sec=$sec,v4.2"
else
- mntargs="-F nfs4 -o proto=$proto,minorversion=2"
+ mntargs="-F nfs4 -o proto=$proto,v4.2"
fi
if [ "$proto" = "rdma" ] ; then
mntargs="$mntargs,port=20049"