From 0652e1b6d34e05ed679ca490c6ce800afefe0508 Mon Sep 17 00:00:00 2001 From: Matthew Mosesohn Date: Fri, 28 Jul 2017 15:15:08 +0300 Subject: [PATCH] install python3-netaddr Change-Id: I3cfc56ae9f7cfe3c74705910b1f2ed27c51ef485 --- utils/jenkins/kargo_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/jenkins/kargo_deploy.sh b/utils/jenkins/kargo_deploy.sh index d001de6..0929b4f 100755 --- a/utils/jenkins/kargo_deploy.sh +++ b/utils/jenkins/kargo_deploy.sh @@ -273,7 +273,7 @@ if ! admin_node_command type ansible 2>&1 > /dev/null; then if [[ "$ANSIBLE_INSTALL_SOURCE" == "apt" ]]; then with_retries admin_node_command -- sudo apt-get install -y ansible python-netaddr elif [[ "$ANSIBLE_INSTALL_SOURCE" == "pip" ]]; then - with_retries admin_node_command -- sudo apt-get install -y python-netaddr libssl-dev python3-pip + with_retries admin_node_command -- sudo apt-get install -y python3-netaddr libssl-dev python3-pip with_retries admin_node_command -- sudo pip3 install --upgrade ansible==$required_ansible_version else echo "ERROR: Unknown Ansible install source: ${ANSIBLE_INSTALL_SOURCE}"