Files
tower-tests/update-hosts.yml

16 lines
189 B
YAML

---
- name: Update all hosts
hosts: all
gather_facts: no
become: yes
tasks:
- name: Update all hosts
package: name=* state=latest
async: 1800
poll : 3
...