On Mar 23, 2009, at 7:21 AM, iuhh wrote:
>
> Hi guys,
>
> I am new to puppet and got a question regarding subscribing and
> scheduling. As we are going to run puppet on production machines
> certain operations can only be performed out-of-hours, e.g. management
> of ntp and syslog.
>
> Take NTP for instance, I needed to distribute the configuration and
> restart the service afterwards, but only if it's between 20:00 to
> 22:00. I thought of following ways:
> - schedule on exec and exec subscribe to file: didn't work, the
> conditions are 'OR'ed
> - file notify exec, schedule on exec: didn't work, triggering are also
> 'OR'ed
> - schedule on file, exec subscribe to file (see below config)
> - schedule on file, file notify exec (gives same result as above)
>
> So I arrived at the following configuration:
>
> class ntp {
>
> package { ntp: ensure => latest }
>
> file { "/etc/ntp.conf":
> ensure => present,
> mode => 444,
> owner => root,
> group => root,
> source => "puppet:///ntp/ntp.conf",
> schedule => atnight,
> }
>
> service { ntpd:
> enable => true,
> ensure => true,
> hasrestart => true,
> hasstatus => true,
> }
>
> schedule { atnight:
> range => "20 - 22",
> period => daily,
> }
>
> exec { "reload_ntp":
> path => "/usr/bin:/usr/sbin:/bin",
> subscribe => File["/etc/ntp.conf"],
> refreshonly => true,
> # Explicitly avoid init.d/ntpd restart as it uses ntpdate
> # Needs tweaking to accomondate other OSes
> refresh => "/etc/init.d/ntpd stop && ntpd -u ntp:ntp -p /var/
> run/ntpd.pid -g",
> }
>
> }
>
>
> When I run puppetd during testing inside the time range, it would
> complain about the schedule:
> debug: //Node[testhost]/ntp/Exec[reload_ntp]/subscribe: subscribes to
> File[/etc/ntp.conf]
> debug: //Node[testhost]/ntp/File[/etc/ntp.conf]: Not scheduled
I think you've got the schedule a bit wrong - I think Puppet's
interpreting that as saying "only run this between the 20th and 22nd
day". Try 'hourly' as the period.
I don't use schedules much, so I could be completely wrong, even
though I wrote the code.
>
> I've attempted to tweak the range (e.g. range => "08:00 - 22:00",
> range => [08, 22] which resulted Parameter range failed: Invalid range
> value error), changed period => hourly, added repeat => 10 (I
> understand this counts number of invocations during the range in the
> given period?), and restarted puppetmasterd in attempt to clear any
> counters (are they persistent?), none of which made it run.
>
> Could you help? I'm running puppet 0.24.5.
>
> On a separate note, how is notify different from subscribe in terms of
> practical use? I noticed both would work (e.g. add notify => Exec
> ["reload_ntp"] in the file resource and get rid of subscribe in the
> exec resource), what is the best scenario to use either?
Notify and subscribe are opposites, and you should use whichever is
easier. Generally, you want to specify the relationship on the "many"
side of the edge; e.g., if you have many apache virtual hosts and one
apache process, then each virtual host would notify the process.
--
Silence is a text easy to misread.
-- A. A. Attanasio, 'The Eagle and the Sword'
---------------------------------------------------------------------
Luke Kanies | http://reductivelabs.com | http://madstop.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---