ansible/MY/uptime.yml

11 lines
182 B
YAML
Raw Permalink Normal View History

2025-10-31 08:47:26 +04:00
---
- hosts: all
tasks:
- name: Check uptime of the remote host
shell: uptime
register: command_output
- debug:
var: command_output.stdout_lines