ansibleTest/get_diskSpace.yml

9 lines
221 B
YAML
Raw Permalink Normal View History

2022-03-01 12:57:25 -05:00
---
- name: Check Disk Space Usage
hosts: all
tasks:
- name: Disk usage from command module
command: df -h
register: space
- debug:
var: space.stdout_lines