12 lines
255 B
YAML
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"
|