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.
This commit is contained in:
Doc
2025-12-14 17:23:36 -05:00
parent de5125048e
commit ff6e1ddeb3

View File

@@ -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