12 lines
280 B
YAML
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 }}"
|