PDA

View Full Version : rkhunter schedule


akamarinos
29th December 2010, 17:00
my vps is quite weak so I want to run rkhunter weekly instead of default daily

i have changed
/usr/local/ispconfig/server/mods-available/monitor_core_module.inc.php
to this

* This monitoring is expensive, so do it only once a day
*/

$min = date('i');
$hour = date('H');
$day = date('D');
if (!($min == 0 && $hour == 23 && $day == Wed)) return;


will that do the job ?

akamarinos
29th December 2010, 22:49
seems to be working

if anybody else wants to make these changes
you have to change the lines 1175-1180