diff options
author | 2025-03-04 19:14:44 +0100 | |
---|---|---|
committer | 2025-03-04 19:14:44 +0100 | |
commit | 8030d1fc9ca0ebb752f646f8d80cc944a31ce9cd (patch) | |
tree | 79d041ba4f2d0a23ba3b583f0c7c9a49d8f35536 | |
parent | 1973be329527f1475574047a86e09215a88b2831 (diff) |
Install ansible via pip
ansible 2.10 is too old for many collections
Change-Id: Ifa767ab99504a56fc67ace643d84ae2613509b7d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | jjb/functest/xtesting-ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/functest/xtesting-ci.yaml b/jjb/functest/xtesting-ci.yaml index f9e757acb..b7063e99c 100644 --- a/jjb/functest/xtesting-ci.yaml +++ b/jjb/functest/xtesting-ci.yaml @@ -24,7 +24,7 @@ sudo podman ps -aq |xargs sudo podman rm || true fi sudo rm -rfv /data /tmp/xtesting* - if [ $(lsb_release -r -s |cut -d\. -f1) -ge "22" ]; then + if [ $(lsb_release -r -s |cut -d\. -f1) -ge "24" ]; then sudo DEBIAN_FRONTEND=noninteractive apt-get \ -o DPkg::Lock::Timeout=300 install ansible patch -y else @@ -71,7 +71,7 @@ fi sudo rm -rfv /data /tmp/xtesting* EOF - if [ $(lsb_release -r -s |cut -d\. -f1) -ge "22" ]; then + if [ $(lsb_release -r -s |cut -d\. -f1) -ge "24" ]; then sudo DEBIAN_FRONTEND=noninteractive apt-get \ -o DPkg::Lock::Timeout=300 install ansible patch -y else |