#!/bin/bash
cp="/usr/local/cpanel/cpanel"
if [ -f $cp ]
then
if [ "`sudo $cp |grep Licensed\ on`" ]
then
echo "OK: cPanel license is active"
exit 0
else
echo "CRITICAL: cPanel is not licensed"
exit 2
fi
else
echo "CRITICAL: $cp is not found"
exit 2
fi