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 Code: * 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 ?
seems to be working if anybody else wants to make these changes you have to change the lines 1175-1180