initial project commit
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-12-08 15:26:54 -05:00
commit 1f80729491
10 changed files with 168 additions and 0 deletions

11
ansible/ansible-check.yml Normal file
View File

@ -0,0 +1,11 @@
---
- name: Ansible Installation Verification
hosts: all
become: false
gather_facts: true
tasks:
- name: Test Ansible Installation
ansible.builtin.debug:
msg: "Ansible is successfully installed on {{ inventory_hostname }}!"