mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
10 lines
252 B
YAML
10 lines
252 B
YAML
- hosts: all
|
|
strategy: free
|
|
gather_facts: no
|
|
tasks:
|
|
- debug: msg="all hosts should print this"
|
|
- pause: seconds=5
|
|
when: inventory_hostname == 'l2'
|
|
- pause: seconds=10
|
|
when: inventory_hostname == 'l3'
|
|
- debug: msg="and we're done"
|