Initial commit.

This commit is contained in:
2025-07-15 21:31:41 +02:00
commit 8b322f39bf
6 changed files with 476 additions and 0 deletions

19
ansible.cfg Normal file
View File

@ -0,0 +1,19 @@
[defaults]
# Use the inventory file in the current directory
inventory = inventory.ini
# The user to connect to the remote hosts with
remote_user = pkhamre
# The private key to use for SSH authentication
private_key_file = ~/.ssh/id_ed25519
# Disable host key checking for simplicity with new Vagrant VMs
host_key_checking = False
[privilege_escalation]
# Use sudo for privilege escalation (e.g., for installing packages)
become = true
become_method = sudo
become_user = root
become_ask_pass = false