ansible-dev/ansible/ansible-check.yml
Chris Hammer 1f80729491
Some checks failed
continuous-integration/drone/push Build is failing
initial project commit
2023-12-08 15:26:54 -05:00

12 lines
252 B
YAML

---
- 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 }}!"