Skip to content

Instantly share code, notes, and snippets.

@brian9206
Created April 5, 2022 09:32
Show Gist options
  • Save brian9206/68e3bf44fd1c0a3f95016ebd63cd001d to your computer and use it in GitHub Desktop.
Save brian9206/68e3bf44fd1c0a3f95016ebd63cd001d to your computer and use it in GitHub Desktop.
Disk space alert
#!/bin/bash
CURRENT=$(df / | grep / | awk '{ print $5}' | sed 's/%//g')
THRESHOLD=90
if [ "$CURRENT" -gt "$THRESHOLD" ] ; then
mail -s 'Disk Space Alert' [email protected] << EOF
Your root partition remaining free space is critically low. Used: $CURRENT%
EOF
fi
@brian9206
Copy link
Author

Place it under /etc/cron.daily
Remember chmod +x 10-diskspace.sh

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