12 lines
252 B
YAML
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 }}!"
|