cron can also be disabled

This commit is contained in:
Udo Waechter
2014-09-11 16:10:34 +02:00
parent 7906f32a33
commit f045d0f58a
2 changed files with 15 additions and 8 deletions

View File

@@ -1,9 +1,10 @@
class puppet (
$ensure = 'present',
$version = undef,
$agent = true,
$server = false,
$ensure = 'present',
$version = undef,
$agent = true,
$server = false,
$facter_version = $ensure,
$agent_cron = true,
$puppetlabs_apt = true,
$agent_norunifloggedin = false,
$agent_daemonize = true,
@@ -49,7 +50,8 @@ class puppet (
daemonize => $agent_daemonize,
run_hour => $agent_run_hour,
run_if_ipmatch => $agent_run_if_ipmatch,
maxsleep => $agent_max_sleep
maxsleep => $agent_max_sleep,
cron => $agent_cron,
}
}