mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15 lines
365 B
YAML
15 lines
365 B
YAML
|
- hosts: testhost
|
||
|
tasks:
|
||
|
- name: ensure facts have not been collected
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts is undefined or not 'fqdn' in ansible_facts
|
||
|
|
||
|
- hosts: testhost
|
||
|
gather_facts: True
|
||
|
tasks:
|
||
|
- name: ensure facts have been collected
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts is defined and 'fqdn' in ansible_facts
|