From 8b4934103ca72edd14b15fd3ec7028cbf580f7d5 Mon Sep 17 00:00:00 2001 From: Doc Date: Mon, 15 Dec 2025 04:28:16 -0500 Subject: [PATCH] Adjusted packages installed - Removed openssh-client (server is the part we need) - Added python3 and python3-apt to support Ansible --- 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 d7fff94..ce8e12b 100644 --- a/scripts/bootstrap-vps-debian12.sh +++ b/scripts/bootstrap-vps-debian12.sh @@ -52,7 +52,9 @@ EOF # avoid --no-install-recommends for basic programs # like wget, sudo, and openssh -apt install -y openssh-client openssh-server sudo +# also python3 and python3-apt for Ansible +apt install -y openssh-server sudo \ + python3 python3-apt err=$? if [ $err -ne 0 ]; then