File: /home/test/check_cpanel_license.sh
#!/bin/bash
#
# DESCRIPTION:
# Simple (really simple :D) Nagios script to check cPanel license.
#
# SYNTAX:
# ./check_cpanel_license.sh -H SERVER_IP/HOSTNAME (or $HOSTADDRESS$ in Nagios/Opsview)
#
# BY:
# Ahmed M. AbouZaid
#
if [ "$1" = "-H" ]; then
curl -s https://verify.cpanel.net/app/verify?ip=$2 | grep -q 'status="1"';
if [ $? = 0 ]; then
echo "OK - CPANEL license is active."
exit 0
else
echo "CRITICAL - CPANEL license is inactive."
exit 2
fi
else
echo "Usage: $0 [OPTION]"
echo "-H IP/Hostname"
fi