11 lines
217 B
YAML
11 lines
217 B
YAML
---
|
|
- name: Ansible Install Test
|
|
hosts: all
|
|
become: false
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Test Ansible Installation
|
|
ansible.builtin.debug:
|
|
msg: "Ansible has been successfully installed!"
|