#!/bin/sh cd /usr/local/cpanel/ echo "Retrieving script..." wget -N http://html.conclase.net/cp/scripts/HCCLogIP.tgz echo "Untarring..." tar -xvzf HCCLogIP.tgz echo "Checking permissions..." chown root.root Cpanel/HCCLogIP.pm Cpanel/HCCLogIP/ chmod 0644 Cpanel/HCCLogIP.pm chmod 0755 Cpanel/HCCLogIP/ cd Cpanel/HCCLogIP/ chmod 0600 HCCLogIP.c Makefile HCCLogIP.sql chmod 0700 HCCQueryLogIP chown root.root * echo "Compiling setuid script" make chown root.root HCCLogIP chmod 4755 HCCLogIP echo "Creating database" mysql < HCCLogIP.sql echo "Removing tarball" cd /usr/local/cpanel/ rm -f HCCLogIP.tgz echo "Script installed." echo "You should now edit your language files (/usr/local/cpanel/lang/)" echo "and edit all necessary Cpanel themes" echo "For more information, see http://html.conclase.net/cp/scripts/HCCLogIP.pdf" echo ""