13 lines
262 B
YAML
13 lines
262 B
YAML
---
|
|
- name: Test connectivity and gather system information
|
|
hosts: all
|
|
become: false
|
|
tasks:
|
|
|
|
- name: Ping the servers
|
|
ansible.builtin.ping:
|
|
|
|
- name: Update all servers (Debian/Ubuntu)
|
|
apt:
|
|
upgrade: dist
|
|
update_cache: yes |