Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

Commit

Permalink
chore: update ansible installation on quickstart script
Browse files Browse the repository at this point in the history
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.
ansible/ansible#69161
  • Loading branch information
jslopez committed Nov 25, 2020
1 parent b054bfb commit c4acb38
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4acb38

Please sign in to comment.