aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci/bare-metal/expect-output.sh
blob: a7e62a1ec8ccb304ebcccd844d3142595b67779f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

set -e

echo "Waiting for $1 to say '$2'"

while ! grep -q "$2" $1; do
  sleep 2
done