premier commit

This commit is contained in:
bruno 2022-03-01 12:57:25 -05:00
parent d8362a9072
commit 4c3cc9948f
1 changed files with 9 additions and 0 deletions

9
get_diskSpace.yml Normal file
View File

@ -0,0 +1,9 @@
---
- name: Check Disk Space Usage
hosts: all
tasks:
- name: Disk usage from command module
command: df -h
register: space
- debug:
var: space.stdout_lines