12 lines
199 B
YAML
12 lines
199 B
YAML
---
|
|
|
|
- name: Check hostname
|
|
ansible.windows.win_command: hostname
|
|
register: hostname_output
|
|
|
|
|
|
- name: display hostname
|
|
debug:
|
|
msg: "Hostname: {{ hostname_output.stdout_lines[0] }}"
|
|
|
|
... |