diff --git a/01_install_requirements.sh b/01_install_requirements.sh index 4ac0b3157..3c9ca4e9c 100755 --- a/01_install_requirements.sh +++ b/01_install_requirements.sh @@ -135,7 +135,9 @@ sudo python -m pip install ansible=="${ANSIBLE_VERSION}" pushd ${METAL3_DEV_ENV_PATH} ansible-galaxy install -r vm-setup/requirements.yml -ansible-galaxy collection install --upgrade ansible.netcommon ansible.posix ansible.utils community.general +# Let's temporarily pin these collections to the latest compatible with ansible-2.15 +#ansible-galaxy collection install --upgrade ansible.netcommon ansible.posix ansible.utils community.general +ansible-galaxy collection install 'ansible.netcommon<=7.2.0' ansible.posix 'ansible.utils<=5.1.2' community.general ANSIBLE_FORCE_COLOR=true ansible-playbook \ -e "working_dir=$WORKING_DIR" \ -e "virthost=$HOSTNAME" \