Files
startusingansible/examples/034_rols/playbooks/hostname.yml
2026-05-19 16:17:27 +02:00

12 lines
280 B
YAML

---
- 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 }}"