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

9 lines
173 B
YAML
Raw Normal View History

2022-02-27 03:19:20 +00:00
---
- hosts: all
become: true
tasks:
- name: Force a fact refresh to have those available in local cache
2022-03-28 05:01:23 +00:00
ansible.builtin.setup:
2022-02-27 03:19:20 +00:00
gather_timeout: 30
...