Removed --no-install-recommends option

Maybe its better if we allow recommends for basic utilities. wget has problems with https if we do not allow recommends.
This commit is contained in:
Doc
2025-12-14 21:54:27 -05:00
parent 7fdf0f2b21
commit 53327301d1

View File

@@ -50,7 +50,9 @@ cat << EOF
EOF
apt install -y --no-install-recommends openssh-client openssh-server sudo
# avoid --no-install-recommends for basic programs
# like wget, sudo, and openssh
apt install -y openssh-client openssh-server sudo
err=$?
if [ $err -ne 0 ]; then