8 lines
230 B
YAML
8 lines
230 B
YAML
- name: Verify hosts matched
|
|
hosts: all
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Fail if no hosts are available
|
|
ansible.builtin.fail:
|
|
msg: "Không có hosts nào khớp!"
|
|
when: ansible_play_hosts | length == 0 |