Skip to content

Instantly share code, notes, and snippets.

@goodc0re
Created July 14, 2019 04:32
Show Gist options
  • Save goodc0re/cbaffab5674cc9324ecb591ab350e564 to your computer and use it in GitHub Desktop.
Save goodc0re/cbaffab5674cc9324ecb591ab350e564 to your computer and use it in GitHub Desktop.
Ansible playbook that checks if there is less than 95% free disk space
# checkdiskspaceall.yml
---
- hosts: zcoin_masternodes
vars_files: vault.yml
become: yes
become_method: sudo
gather_facts: yes
tasks:
- name: Collect only facts about hardware
setup:
gather_subset:
- 'hardware'
- name: Test for available disk space
setup: filter=ansible_mounts
- name: Ensure that free space on the tested volume is greater than 15%
assert:
that:
- mount.size_available > mount.size_total|float * 0.05
msg: Disk space has reached 95% threshold
vars:
mount: "{{ ansible_mounts | selectattr('mount','equalto',item.mount) | list | first }}"
with_items:
- "{{ ansible_mounts }}"
@aligolestan
Copy link

how can I check only / partition ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment