Skip to content
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
6 changes: 6 additions & 0 deletions scripts/setup_molecule
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ export PROJECT_DIR="$(dirname $(dirname $(readlink -f ${BASH_SOURCE[0]})))"
# system ansible may be installed.
export ANSIBLE_SKIP_CONFLICT_CHECK=1

# Workaround: OpenSSL >= 3.5.6 introduced strict DER validation that rejects
# some real-world CA root certs (openssl/openssl#25023), breaking Ansible's
# url lookup plugin. Pin to 3.5.5 until the issue is resolved upstream.
# Remove this block once openssl/openssl#25023 is fixed.
sudo dnf downgrade --allowerasing -y openssl-3.5.5 openssl-libs-3.5.5 2>/dev/null || true

PIP_INSTALL_ARGUMENTS="-U -r ${PROJECT_DIR}/test-requirements.txt"
case ${USE_VENV-'yes'} in
y|yes|true)
Expand Down
Loading