In the following code the `repeat` attribute is not evaluated:
schedule { "publish_sched" :
range => "12:10 - 13:00",
weekday => "Thursday",
repeat => 1,
}
notify { "test message" :
schedule => "publish_sched",
}
This code produces the notify message during the specified range and weekday but does not apply the `repeat => 1,` specification. It repeats as many times as puppet runs during that period. The documentation even states that the default for `repeat` is `1`.
This is puppet 3.6.2 (master and client) running on RedHat 6.
↧