From 5f012aaa3d82c1d2367b93ddbbfc378cb8e01310 Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Wed, 7 Jul 2021 11:10:17 -0700 Subject: [PATCH] Use python3 in ci/install_ansible.sh Signed-off-by: Todd Malsbary Change-Id: I22da2b03d09350e36f7e4373d726799c6c1f8d29 --- ci/install_ansible.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/install_ansible.sh b/ci/install_ansible.sh index b6d8774..270ee83 100755 --- a/ci/install_ansible.sh +++ b/ci/install_ansible.sh @@ -1,5 +1,6 @@ set -e export DEBIAN_FRONTEND=noninteractive apt update -pip install ansible +apt-get install -y python3-pip +pip3 install ansible ansible-galaxy install geerlingguy.jenkins,3.7.0 --roles-path /etc/ansible/roles -- 2.16.6