Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wait for provision to complete before install test agent #3094

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests_e2e/orchestrator/scripts/install-agent
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,19 @@ echo "Agent Version:"
$python "$waagent" --version
echo "Service Status:"

# Sometimes the service can take a while to start; give it a few minutes,
# We need to wait for the provisioning code to complete before stopping the agent's service to do the test setup
started=false
for i in {1..6}
do
if service-status $service_name; then
if [[ -f /var/lib/waagent/provisioned ]]; then
started=true
break
fi
echo "Waiting for service to start..."
echo "Waiting for agent to complete provisioning."
sleep 30
done
if [ $started == false ]; then
echo "Service failed to start."
echo "Provisioning did not complete within the given timeout (cannot find /var/lib/waagent/provisioned)"
exit 1
fi

Expand Down
Loading