ansible-ops-management/adhoc-facts-refresh.yml

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