ansible-test - Fix expat on Fedora 42 remotes (#86375)

This commit is contained in:
Matt Clay 2026-01-05 13:22:37 -08:00 committed by GitHub
parent 6c024e24b4
commit 52cd605887
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ansible-test - Upgrade ``expat`` during provisioning of Fedora 42 remote instances.

View file

@ -163,6 +163,18 @@ bootstrap_remote_fedora()
&& break
retry_or_fail
done
packages="
expat
"
retry_init
while true; do
# shellcheck disable=SC2086
dnf update -q -y ${packages} \
&& break
retry_or_fail
done
}
bootstrap_remote_freebsd()