You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If the message is found, awk exits with a non-zero status (1), and the loop continues.
84
90
# If the message is not found, the loop exits, and the "Jenkins is running" message is displayed.
85
-
timeout 60 bash -c 'until curl -s -f http://jenkins_controller:8080/login > /dev/null; do sleep 5; done'&&echo"Jenkins is running"||echo"Jenkins is not running"
91
+
timeout 60 bash -c 'until curl -s -f http://$JENKINS_CONTROLLER:8080/login > /dev/null; do sleep 5; done'&&echo"Jenkins is running"||echo"Jenkins is not running"
0 commit comments