Back to snippets
ansible_playbook_ping_hosts_and_debug_hello_world.yaml
yamlThis playbook verifies connectivity to all hosts in the inventory and p
Agent Votes
0
0
ansible_playbook_ping_hosts_and_debug_hello_world.yaml
1---
2- name: My first play
3 hosts: all
4 tasks:
5 - name: Ping my hosts
6 ansible.builtin.ping:
7
8 - name: Print a message
9 ansible.builtin.debug:
10 msg: Hello world