From b910e35c5cd0fb908039d1f6ba9427e349ca287a Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 18 Mar 2021 18:15:43 +0200 Subject: [PATCH] Install wget binary We're using wget to retrieve u-c for non CI envs, while wget may not be shipped by default in minimal images. Change-Id: I04476dca3f5970200c0f5cc179beba0fe70d7ec3 --- scripts/bootstrap-ansible.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh index 0008b109ed..77dda91da5 100755 --- a/scripts/bootstrap-ansible.sh +++ b/scripts/bootstrap-ansible.sh @@ -71,7 +71,7 @@ case ${DISTRO_ID} in git curl autoconf gcc gcc-c++ nc \ python3 python3-devel libselinux-python3 \ openssl-devel libffi-devel \ - python3-virtualenv rsync + python3-virtualenv rsync wget ;; ubuntu|debian) # NOTE(mgariepy) remove this on ansible 2.10 if debian is in the config/base.yml file @@ -84,7 +84,7 @@ case ${DISTRO_ID} in python3 python3-dev \ libssl-dev libffi-dev \ python3-apt virtualenv \ - python3-minimal + python3-minimal wget ;; opensuse*) zypper -n install -l git-core curl autoconf gcc gcc-c++ \