Hacked By AnonymousFox

Current Path : /proc/thread-self/root/proc/thread-self/root/proc/self/root/usr/lib64/nagios/plugins/nccustom/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/proc/self/root/usr/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

Hacked By AnonymousFox1.0, Coded By AnonymousFox