Compare commits

3 Commits
Author SHA1 Message Date
ci-ansible b908abdfc0 ping-hosts.yaml aktualisiert 2025-08-12 10:16:04 +02:00
ci-ansible 3d41c95ab0 ping-hosts hinzugefügt 2025-08-12 10:15:33 +02:00
ralf.kirchner 604389b196 update-apt-packages.yaml hinzugefügt 2023-09-30 12:47:10 +02:00
2 changed files with 16 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
---
- name: Check connectivity with all hosts
hosts: all
tasks:
- name: Ping all hosts
ansible.builtin.ping:
+9
View File
@@ -0,0 +1,9 @@
---
- hosts: all
become: true
tasks:
- name: update apt packages
apt:
upgrade: yes
update_cache: yes