semaphore-test/test.yml
2024-08-27 05:06:26 +00:00

12 lines
255 B
YAML

---
- name: Test connectivity and gather system information
hosts: all
become: true
tasks:
- name: Update all servers (Debian/Ubuntu)
apt:
upgrade: dist
update_cache: yes
when: ansible_facts['os_family'] == "Debian"