From 944ba883d777f87813c5187de7f9dc70eaadfa1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Mon, 22 Apr 2024 14:22:06 +0200 Subject: [PATCH] Do not install git or python on install They will be installed by ansible, and are not required for the ansible run. --- install.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/install.sh b/install.sh index 2eb09e0..21b4709 100755 --- a/install.sh +++ b/install.sh @@ -42,18 +42,6 @@ install() { fi } -if ! command -v git >/dev/null ; then - printf 'Git not installed, installing ...\n' - install "git" - printf 'Done\n' -fi - -if ! command -v python3 >/dev/null ; then - printf 'Python3 not installed, installing ...\n' - install "python3" - printf 'Done\n' -fi - if ! command -v make >/dev/null ; then printf 'Make not installed, installing ...\n' install "make"