ansible-ops-management/adhoc-facts-refresh.yml
nazunalika 699ec2e2f0
init
2022-02-26 20:19:20 -07:00

9 lines
157 B
YAML

---
- hosts: all
become: true
tasks:
- name: Force a fact refresh to have those available in local cache
setup:
gather_timeout: 30
...