This commit is contained in:
2026-05-19 16:17:27 +02:00
parent 16266c1a18
commit 613e6be0f8
44 changed files with 1244 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
---
- hosts: all
tasks:
- name: Ping to servers
ping:
- name: Get hostname
command: hostname
register: hostname
- name: Show hostname with message
debug:
msg: "The hostname of this server is {{ hostname.stdout }}"