D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
lib64
/
nagios
/
plugins
/
nccustom
/
Filename :
check_cplicense.sh
back
Copy
#!/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