Minimal playbook that checks connectivity and prints a greeting.
---
- name: Ping and greet hosts
hosts: all
gather_facts: false
tasks:
- name: Verify connectivity
ansible.builtin.ping:
- name: Print a welcome message
ansible.builtin.debug:
msg: "Hello from SculptOps community library !"
Info