Added all

This commit is contained in:
2026-05-20 18:52:35 +02:00
commit 2c6c4242ce
41 changed files with 868 additions and 0 deletions

9
ansible.sh Normal file
View File

@@ -0,0 +1,9 @@
# Script to install Ansible on a Ubuntu system
apt-get update
# Install required packages
apt install software-properties-common -y
# Add Ansible PPA and install Ansible
apt-add-repository ppa:ansible/ansible
apt-get install ansible net-tools -y
# Add vagrant user to sudoers
echo "vagrant ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/vagrant