From f6372756beb144231b0a28c71734d401d2cb99bc Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Tue, 12 Aug 2014 14:05:53 -0400 Subject: runcthon: Removed the -F flag since it is nolonger needed Signed-off-by: Steve Dickson --- runcthon | 16 ++++++++-------- 1 file 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" -- cgit