first commit

This commit is contained in:
ansible user
2025-10-22 14:11:49 +02:00
commit 110301f862
75 changed files with 20802 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
- 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