tests: Use --http0.9 for curl ssh test

This commit is contained in:
Brian C. Lane 2019-10-30 16:27:29 -07:00
parent e3654e8297
commit a0ae10c2d7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ boot_image() {
-serial chardev:log0 &"
# wait for ssh to become ready (yes, http is the wrong protocol, but it returns the header)
tries=0
until curl -sS -m 15 "http://localhost:$SSH_PORT/" | grep 'OpenSSH'; do
until curl --http0.9 -sS -m 15 "http://localhost:$SSH_PORT/" | grep 'OpenSSH'; do
tries=$((tries + 1))
if [ $tries -gt $TIMEOUT ]; then
exit 1