Current Path : /proc/thread-self/root/proc/thread-self/root/lib64/nagios/plugins/nccustom/ |
Current File : //proc/thread-self/root/proc/thread-self/root/lib64/nagios/plugins/nccustom/check_cplicense.sh |
#!/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