From ff6e1ddeb39afba56ad755dd55617bd681de00d5 Mon Sep 17 00:00:00 2001 From: Doc Date: Sun, 14 Dec 2025 17:23:36 -0500 Subject: [PATCH] Fixed option to apt. Installed a few extra files. - Fixed --no-recommends to the correct --no-install-recommends - Added wget, curl, and git to utilities to install. --- scripts/bootstrap-vps-debian12.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-vps-debian12.sh b/scripts/bootstrap-vps-debian12.sh index 2e710c7..b6dc0aa 100644 --- a/scripts/bootstrap-vps-debian12.sh +++ b/scripts/bootstrap-vps-debian12.sh @@ -14,10 +14,10 @@ ANSIUSERDIR=/home/$ANSIUSER TMP_PORT=46347 # Update to current -apt update && apt upgrade -y --no-recommends +apt update && apt upgrade -y # Install requirements -apt install -y --no-recommends openssh-client openssh-server sudo +apt install -y --no-install-recommends openssh-client openssh-server sudo git curl wget # Create a user for Ansible useradd -m -s /bin/bash -c "Ansible User" $ANSIUSER