From cd6542467bdb67b90c4546c62bfa644f5d9e8885 Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 9 Apr 2002 00:04:23 +0000 Subject: [PATCH] Only try to run setup if there isn't already a Lustre filesystem set up. --- lustre/tests/runtests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/runtests b/lustre/tests/runtests index 5f24925..2a5b77b 100755 --- a/lustre/tests/runtests +++ b/lustre/tests/runtests @@ -10,7 +10,7 @@ PATH=$PATH:$RUNDIR ERROR= -llmount.sh || exit 1 +[ "`mount | grep /mnt/obd`" ] || echo | llmount.sh || exit 1 # let's start slowly here... touch /mnt/lustre || exit 2 @@ -31,7 +31,7 @@ done llmountcleanup.sh -llrmount.sh || exit 20 +echo | llrmount.sh || exit 20 echo "comparing previously copied files" diff -u /etc/hosts /mnt/lustre/hosts || exit 21 -- 1.8.3.1