Initial commit

This commit is contained in:
jwy
2025-12-31 16:22:27 +01:00
commit 9128166441
8 changed files with 136 additions and 0 deletions

4
playbooks/ansible.cfg Normal file
View File

@@ -0,0 +1,4 @@
[defaults]
inventory = /ansible/inventory.ini
host_key_checking = False
remote_user = uansible

9
playbooks/inventory.ini Normal file
View File

@@ -0,0 +1,9 @@
[ubuntu]
ubuntu_node
[rocky]
rocky_node
[all:vars]
ansible_user=uansible
ansible_ssh_private_key_file=/home/uansible/.ssh/id_rsa

7
playbooks/test.yml Normal file
View File

@@ -0,0 +1,7 @@
---
- name: Test connectivity
hosts: all
gather_facts: false
tasks:
- name: Ping
ansible.builtin.ping: