From baab3b9f115b599859f6bf944d03c91ffce06f56 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 8 Dec 2023 16:53:41 -0800 Subject: [PATCH] ceph-setup, ceph-tag: pin ansible to < 9 This is a temporary hack until we have time to properly test changing include to include_tasks, required by ansible 9 (include has been deprecated for some time, and now it's officially gone) Signed-off-by: Dan Mick --- ceph-setup/build/create_tag | 2 +- ceph-tag/build/build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ceph-setup/build/create_tag b/ceph-setup/build/create_tag index 5319c4d1..330a9662 100644 --- a/ceph-setup/build/create_tag +++ b/ceph-setup/build/create_tag @@ -3,7 +3,7 @@ set -ex # the following two methods exist in scripts/build_utils.sh -pkgs=( "ansible" ) +pkgs=( "ansible<9.0" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]" diff --git a/ceph-tag/build/build b/ceph-tag/build/build index 1fbde3d1..f0ebe696 100644 --- a/ceph-tag/build/build +++ b/ceph-tag/build/build @@ -6,7 +6,7 @@ if [ "$TAG" = false ] ; then echo "Assuming tagging process has succeeded before because TAG was set to false" else # the following two methods exist in scripts/build_utils.sh - pkgs=( "ansible" ) + pkgs=( "ansible<9.0" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]" -- 2.39.5