Do not install git or python on install

They will be installed by ansible, and are not required for the
ansible run.
This commit is contained in:
2024-04-22 14:22:06 +02:00
parent 3521508ff4
commit 944ba883d7

View File

@@ -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"