Merge "Silence drupal cron job"

This commit is contained in:
Jenkins 2014-08-05 00:52:08 +00:00 committed by Gerrit Code Review
commit e0df5d7423

View File

@ -244,7 +244,7 @@ class drupal (
cron { $site_name:
name => "${site_name}.cron",
command => "wget -O - -q -t 1 ${$site_base_url}/cron.php?cron_key=${$conf_cron_key}",
command => "wget -O /dev/null -q -t 1 ${$site_base_url}/cron.php?cron_key=${$conf_cron_key}",
user => root,
minute => '*/5',
require => [
@ -252,4 +252,4 @@ class drupal (
]
}
}
}