From 51e5bb8d5646cf7285a8e0b04a70350419a3cbef Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 12 May 2021 22:01:02 +0300 Subject: [PATCH] Remove Debain python workaround Modern ansible handles Debian 10 interpreter correctly, so we don't need to override that nowadays Change-Id: I45ff196db00fcaa2eabe097f0c0c5657a267ed7a --- scripts/bootstrap-ansible.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh index 33d177df35..0932df1d50 100755 --- a/scripts/bootstrap-ansible.sh +++ b/scripts/bootstrap-ansible.sh @@ -75,10 +75,6 @@ case ${DISTRO_ID} in python3-virtualenv rsync wget ;; ubuntu|debian) - # NOTE(mgariepy) remove this on ansible 2.10 if debian is in the config/base.yml file - if [[ ${VERSION_ID} == "10" ]]; then - OSA_ANSIBLE_PYTHON_INTERPRETER="/usr/bin/python3" - fi apt-get update DEBIAN_FRONTEND=noninteractive apt-get -y install \ git-core curl gcc netcat \