summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2014-08-12 14:05:53 -0400
committerSteve Dickson <steved@redhat.com>2014-08-12 14:10:54 -0400
commitf6372756beb144231b0a28c71734d401d2cb99bc (patch)
treebaf2e33107590bea35e1ad51d159ff748ec8a738
parent5f437e5da3d0f0be0b327ddfb18d7e6b1eab2b5e (diff)
downloadcthon04-f6372756beb144231b0a28c71734d401d2cb99bc.tar.gz
cthon04-f6372756beb144231b0a28c71734d401d2cb99bc.tar.xz
cthon04-f6372756beb144231b0a28c71734d401d2cb99bc.zip
runcthon: Removed the -F flag since it is nolonger needed
Signed-off-by: Steve Dickson <steved@redhat.com>
-rwxr-xr-xruncthon16
1 files changed, 8 insertions, 8 deletions
diff --git a/runcthon b/runcthon
index f5bcd03..897a63d 100755
--- a/runcthon
+++ b/runcthon
@@ -19,15 +19,15 @@ sec=$5
if [ $vers = "4" ]; then
if [ -n "$sec" ] ; then
if [ $minver -gt 0 ]; then
- mntargs="-F nfs4 -o proto=$proto,sec=$sec,v4.$minver"
+ mntargs="-o proto=$proto,sec=$sec,v4.$minver"
else
- mntargs="-F nfs4 -o proto=$proto,sec=$sec"
+ mntargs="-o proto=$proto,sec=$sec,v4"
fi
else
if [ $minver -gt 0 ]; then
- mntargs="-F nfs4 -o proto=$proto,v4.$minver"
+ mntargs="-o proto=$proto,v4.$minver"
else
- mntargs="-F nfs4 -o proto=$proto"
+ mntargs="-o proto=$proto,v4"
fi
fi
if [ "$proto" = "rdma" ] ; then
@@ -36,9 +36,9 @@ sec=$5
fi
elif [ $vers = "41" ]; then
if [ -n "$sec" ] ; then
- mntargs="-F nfs4 -o proto=$proto,sec=$sec,v4.1"
+ mntargs="-o proto=$proto,sec=$sec,v4.1"
else
- mntargs="-F nfs4 -o proto=$proto,v4.1"
+ mntargs="-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,v4.2"
+ mntargs="-o proto=$proto,sec=$sec,v4.2"
else
- mntargs="-F nfs4 -o proto=$proto,v4.2"
+ mntargs="-o proto=$proto,v4.2"
fi
if [ "$proto" = "rdma" ] ; then
mntargs="$mntargs,port=20049"