From: braam Date: Fri, 5 Jul 2002 20:53:05 +0000 (+0000) Subject: - use UUIDs for mounting X-Git-Tag: 0.5.0~22 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=1b69d451bf6243539f9bc2689c55b67cdf04ed43;p=fs%2Flustre-release.git - use UUIDs for mounting --- diff --git a/lustre/tests/common.sh b/lustre/tests/common.sh index 7b13219..c29c08a 100644 --- a/lustre/tests/common.sh +++ b/lustre/tests/common.sh @@ -454,8 +454,8 @@ setup_mount() { fi [ ! -d $MTPT ] && mkdir $MTPT - echo mount -t lustre_lite -o ost=`find_devno $THEOSC`,mds=`find_devno $THEMDC` none $MTPT - mount -t lustre_lite -o ost=`find_devno $THEOSC`,mds=`find_devno $THEMDC` none $MTPT + echo mount -t lustre_lite -o ost=${THEOSC}-UUID,mds=${THEMDC}-UUID none $MTPT + mount -t lustre_lite -o ost=${THEOSC}-UUID,mds=${THEMDC}-UUID none $MTPT done done }