9 lines
173 B
YAML
9 lines
173 B
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
tasks:
|
|
- name: Force a fact refresh to have those available in local cache
|
|
ansible.builtin.setup:
|
|
gather_timeout: 30
|
|
...
|