Files
Ansible/diskspace.yml
2023-07-22 21:35:18 +02:00

15 lines
448 B
YAML

- hosts: all
tasks:
- name: Get disk usage
shell: df -h / | awk 'NR==2 {print $5}'
register: disk_usage
- name: Send notification
community.general.pushover:
title: 'Disk Space Warning'
msg: 'Disk usage is {{ disk_usage.stdout }}!'
app_token: '{{ app_token }}'
user_key: '{{ user_key }}'
delegate_to: localhost
when: disk_usage.stdout[:-1]|int > {{ disk_threshold }}