init commit

This commit is contained in:
2025-07-21 14:26:07 -05:00
commit 6a683a7a38
25 changed files with 635 additions and 0 deletions

13
playbooks/test.yml Normal file
View File

@@ -0,0 +1,13 @@
- name: Semaphore connection test
hosts: all
gather_facts: false
become: true
tasks:
- name: Print the hostname
command: hostname
register: result
- name: Show result
debug:
msg: "Connected to {{ inventory_hostname }} (hostname: {{ result.stdout }})"