9 lines
151 B
YAML
9 lines
151 B
YAML
---
|
|
- name: Uptime
|
|
command: uptime
|
|
register: uptime_output
|
|
|
|
- name: Show output
|
|
debug:
|
|
msg: "{{ uptime_output.stdout_lines }}"
|