]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-setup, ceph-tag: pin ansible to < 9 2180/head
authorDan Mick <dmick@redhat.com>
Sat, 9 Dec 2023 00:53:41 +0000 (16:53 -0800)
committerDan Mick <dmick@redhat.com>
Sat, 9 Dec 2023 00:53:41 +0000 (16:53 -0800)
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 <dmick@redhat.com>
ceph-setup/build/create_tag
ceph-tag/build/build

index 5319c4d1f1e8c5e440f646fb333ed03f88b8edda..330a9662e9f19456eaa36f26e0577a6c093263ef 100644 (file)
@@ -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[@]"
index 1fbde3d15bdae1412abf270a7605ac2a8e10acd3..f0ebe696309387043fdec532d2088bd2266f0f55 100644 (file)
@@ -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[@]"