--- - name: Run uptime on a host hosts: all gather_facts: no tasks: - name: Check uptime ansible.builtin.raw: uptime register: uptime_out - name: Show result ansible.builtin.debug: var: uptime_out.stdout