13 lines
235 B
YAML
13 lines
235 B
YAML
---
|
|
|
|
- hosts: test_server
|
|
gather_facts: true
|
|
become: false
|
|
tasks:
|
|
- name: Run hostname -a
|
|
command: hostname -a
|
|
register: hostname_out
|
|
|
|
- name: Show hostname output
|
|
debug:
|
|
var: hostname_out.stdout |