From 5bce3e052b28a016606246d1368d68a09965af70 Mon Sep 17 00:00:00 2001 From: Joerg Steffens Date: Wed, 15 Jul 2020 19:32:05 +0200 Subject: [PATCH] systemtest (client-initialed): fixing some typos --- systemtests/tests/client-initiated/testrunner | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemtests/tests/client-initiated/testrunner b/systemtests/tests/client-initiated/testrunner index 567b86f4e59..b65995501ef 100755 --- a/systemtests/tests/client-initiated/testrunner +++ b/systemtests/tests/client-initiated/testrunner @@ -64,7 +64,7 @@ END_OF_DATA sleep 1 echo "Waiting for the director to start" -if ! echo echo "status dir" | "${BAREOS_BCONSOLE_BINARY}" -c "$conf"/bconsole.conf > /dev/null 2>&1; then +if ! echo "status dir" | "${BAREOS_BCONSOLE_BINARY}" -c "$conf"/bconsole.conf > /dev/null 2>&1; then exit_with_error "Director did not start" fi echo "Director is running" @@ -74,7 +74,7 @@ echo "Director is running" echo "Check if the filedaemon is connected to the director" i=0 -until ! echo "status dir" | \ +until echo "status dir" | \ "${BAREOS_BCONSOLE_BINARY}" -c "$conf"/bconsole.conf | \ grep --quiet --word-regexp "${TestName}-fd"; do echo "waiting for client to connect (#$i)... "