From c4acb38e53ce6e86bede1402a6a2415e4139b5ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joao=20S=2E=20L=C3=B3pez?= Date: Wed, 25 Nov 2020 10:46:09 -0300 Subject: [PATCH] chore: update ansible installation on quickstart script Use pip to handle the ansible installation considering: - The version available on the official Ubuntu packages is older than the latest stable release. - The ansible PPA does not have a release for Ubuntu 20. https://github.com/ansible/ansible/pull/69161 --- quickstart.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/quickstart.sh b/quickstart.sh index 1795c425..fb8db537 100755 --- a/quickstart.sh +++ b/quickstart.sh @@ -48,10 +48,7 @@ if ! command -v ansible >/dev/null; then fi else # Assume Ubuntu - sudo apt update - sudo apt install -y software-properties-common - sudo apt-add-repository -y ppa:ansible/ansible - sudo apt install -y ansible + sudo -H pip3 install ansible fi fi # Improvement: upgrade if version is too old