increasing maxsleep further

This commit is contained in:
Udo Waechter
2013-06-05 15:52:09 +02:00
parent b33d9437a2
commit 44c8ba91bc
2 changed files with 12 additions and 20 deletions

View File

@@ -7,7 +7,7 @@ class puppet (
$run_hour = '*/1',
$run_minute = '10',
$run_if_ipmatch = '',
$maxsleep = '640'
$maxsleep = '3200'
) {
$puppet_service = $::kernel ? {
'Darwin' => 'org.macports.puppet',
@@ -110,15 +110,14 @@ class puppet (
}
if defined(Class['ganglia::monitor']) {
Ganglia::Gmetric::Cron {
source => 'puppet/ganglia',
ensure => $ensure,
}
Ganglia::Gmetric::Cron {
source => 'puppet/ganglia',
ensure => $ensure,
}
ganglia::gmetric::cron { 'puppetd_lastrun.sh': runwhen => '5', }
ganglia::gmetric::cron { 'puppetd_runtime.sh': runwhen => '15', }
ganglia::gmetric::cron { 'puppetd_lastrun.sh': runwhen => '5'; 'puppetd_runtime.sh': runwhen => '15'; }
}
}
}
}
$puppet_user = $operatingsystem ? {