First of all, sorry for my english, also is my first question (Dont know what I'm doing :)). I trying to edit my cron job and listing 'my' scheduled tasks i found this one:
*/5 * * * * perl /usr/bin/hm_fix.pl > /dev/null 2<&1
The script itself:
#!/usr/bin/perl -w
# Script to fix some migrations
$gateway = `netstat \-rn \|grep \^0\.0\.0\.0 \|awk \'\{print \$2\}\'`;
if (($gateway eq "") || ($gateway eq "\n")) {
exit 1;
}
else {
`ping -c1 $gateway`;
}
Looks like its some kind of "network" search or something like that. It is a CentOs 6.5 with Plesk panel installed. I googled script name and found nothing...
Thx a lot for your help.