The first play in the `facts.yml` playbook contains a single task: clear the existing fact cache. It makes *no* sense to gather facts for this play.
8 lines
122 B
YAML
8 lines
122 B
YAML
- hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: clear facts
|
|
meta: clear_facts
|
|
- hosts: all
|
|
gather_facts: true
|