ansible-ops-management/adhoc-facts-refresh.yml
2022-03-27 22:01:23 -07:00

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
...