Compare commits

3 Commits

2 changed files with 16 additions and 0 deletions

7
ping-hosts.yaml Normal file
View File

@@ -0,0 +1,7 @@
---
- name: Check connectivity with all hosts
hosts: all
tasks:
- name: Ping all hosts
ansible.builtin.ping:

9
update-apt-packages.yaml Normal file
View File

@@ -0,0 +1,9 @@
---
- hosts: all
become: true
tasks:
- name: update apt packages
apt:
upgrade: yes
update_cache: yes