Skip to content

Instantly share code, notes, and snippets.

@marc-hanheide
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save marc-hanheide/b1f75ad8859297e60646 to your computer and use it in GitHub Desktop.

Select an option

Save marc-hanheide/b1f75ad8859297e60646 to your computer and use it in GitHub Desktop.
check disk and mail root if >80%
#!/bin/sh
df -H | grep -vE '^Filesystem|tmpfs|cdrom|none|udev' | awk '{ print $5 " " $1 }' | while read output;
do
#echo $output
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge 80 ]; then
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
mail -s "Alert: Almost out of disk space $usep%" root
fi
done
@marc-hanheide
Copy link
Author

set up cron using crontab -e:

0 * * * * /home/strands/check-disk.sh

Run it every full hour...

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