/usr/lib64/nagios/plugins
NameSizeModeActions
eventhandlers/-0755rm
check_customer_quota3330755editdlrm
check_disk831200755editdlrm
check_load494480755editdlrm
negate405120755editdlrm
urlize371520755editdlrm
utils.pm21010644editdlrm
utils.sh27910755editdlrm
Edit: /usr/lib64/nagios/plugins/check_customer_quota (333B)
#!/bin/bash MESSAGE=`/usr/sbin/repquota / | grep ^cp[0-9] | awk '$5=="0" && $3>200000000 {printf " "$1}'` #200GB RESULT=$? if test $RESULT -ne 0 ;then echo "UNKNOWN: $MESSAGE" exit 3 elif test -n "$MESSAGE" ;then echo "WARNING:$MESSAGE exceeded 200GB" exit 1 else echo 'OK: no user exceeds 200GB' exit 0 fi