From 53327301d109b7d056548029515fe21b9627a0bd Mon Sep 17 00:00:00 2001 From: Doc Date: Sun, 14 Dec 2025 21:54:27 -0500 Subject: [PATCH] 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. --- scripts/bootstrap-vps-debian12.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-vps-debian12.sh b/scripts/bootstrap-vps-debian12.sh index c7be7fc..d7fff94 100644 --- a/scripts/bootstrap-vps-debian12.sh +++ b/scripts/bootstrap-vps-debian12.sh @@ -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