Adjusted packages installed

- Removed openssh-client (server is the part we need)
- Added python3 and python3-apt to support Ansible
This commit is contained in:
Doc
2025-12-15 04:28:16 -05:00
parent 53327301d1
commit 8b4934103c

View File

@@ -52,7 +52,9 @@ EOF
# avoid --no-install-recommends for basic programs # avoid --no-install-recommends for basic programs
# like wget, sudo, and openssh # 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=$? err=$?
if [ $err -ne 0 ]; then if [ $err -ne 0 ]; then