6 lines
182 B
YAML
6 lines
182 B
YAML
|
|
- hosts: localhost
|
||
|
|
gather_facts: yes
|
||
|
|
tasks:
|
||
|
|
- name: Show the local hostname
|
||
|
|
ansible.builtin.debug:
|
||
|
|
msg: "The hostname of this machine is {{ ansible_hostname }}"
|