From 52b3dad70c8fdec94194020f4a90e1de8c50cd9c Mon Sep 17 00:00:00 2001 From: strNophix Date: Mon, 14 Mar 2022 22:53:08 +0100 Subject: [PATCH] Fixed install_deps.sh for ubuntu 20.04 --- install_deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_deps.sh b/install_deps.sh index 555ac26..3685cd9 100644 --- a/install_deps.sh +++ b/install_deps.sh @@ -1,4 +1,6 @@ #!/usr/bin/env bash -sudo apt-get update -y && sudo apt-get upgrade -y +sudo apt update --yes && sudo apt upgrade --yes +sudo apt install software-properties-common +sudo add-apt-repository --yes --update ppa:ansible/ansible sudo apt install --yes virtualbox vagrant ansible ansible-galaxy install -r ./requirements.yml