From d375299cacf275047936cdb67be78370751111a1 Mon Sep 17 00:00:00 2001 From: Elena Gryaznova Date: Fri, 24 Dec 2010 00:23:27 +0300 Subject: [PATCH] b=23793 MOUNTOPT "-o" cleanup i=Minh.Diep --- lustre/tests/cfg/local.sh | 2 +- lustre/tests/conf-sanity.sh | 6 ++---- lustre/tests/test-framework.sh | 11 ++--------- 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/lustre/tests/cfg/local.sh b/lustre/tests/cfg/local.sh index 298716a..43db944f 100644 --- a/lustre/tests/cfg/local.sh +++ b/lustre/tests/cfg/local.sh @@ -104,7 +104,7 @@ MGS_MOUNT_OPTS=${MGS_MOUNT_OPTS:-$MDS_MOUNT_OPTS} MOUNT=${MOUNT:-/mnt/${FSNAME}} MOUNT1=${MOUNT1:-$MOUNT} MOUNT2=${MOUNT2:-${MOUNT}2} -MOUNTOPT=${MOUNTOPT:-"user_xattr,acl,flock"} +MOUNTOPT=${MOUNTOPT:-"-o user_xattr,acl,flock"} DIR=${DIR:-$MOUNT} DIR1=${DIR:-$MOUNT1} DIR2=${DIR2:-$MOUNT2} diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index c852868..b487af2 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -165,12 +165,10 @@ mount_client() { } remount_client() { - local SAVEMOUNTOPT=$MOUNTOPT - MOUNTOPT="remount,$1" + local mountopt="-o remount,$1" local MOUNTPATH=$2 echo "remount '$1' lustre on ${MOUNTPATH}....." - zconf_mount `hostname` $MOUNTPATH || return 96 - MOUNTOPT=$SAVEMOUNTOPT + zconf_mount `hostname` $MOUNTPATH "$mountopt" || return 96 } umount_client() { diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 89c76ae..bc8de5c 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -720,13 +720,10 @@ setup_quota(){ } zconf_mount() { - local OPTIONS local client=$1 local mnt=$2 - # Only supply -o to mount if we have options - if [ -n "$MOUNTOPT" ]; then - OPTIONS="-o $MOUNTOPT" - fi + local OPTIONS=${3:-$MOUNTOPT} + local device=$MGSNID:/$FSNAME if [ -z "$mnt" -o -z "$FSNAME" ]; then echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt @@ -835,10 +832,6 @@ zconf_mount_clients() { local mnt=$2 local OPTIONS=${3:-$MOUNTOPT} - # Only supply -o to mount if we have options - if [ "$OPTIONS" ]; then - OPTIONS="-o $OPTIONS" - fi local device=$MGSNID:/$FSNAME if [ -z "$mnt" -o -z "$FSNAME" ]; then echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt -- 1.8.3.1