fix apache2 davlockdb path in chowns
[hcoop/scripts.git] / check-openafs-freespace
CommitLineData
999a7ebf
CE
1#!/bin/bash
2# Check afs partitions for free space problems
3
4THRESHOLD=85
5
6df -h --output=target,pcent,used,avail | grep ^/vicep | sed -e s/%// | awk "{if (\$2 > $THRESHOLD) print}" | while read partition pcent used avail; do
7 echo "${used} used, ${avail} available. Consider resizing partition." | mail -s "$(hostname) AFS partition ${partition} ${pcent}% full" log+afs@hcoop.net
8done