blob: 1df5a9e5b71c53aff41f094247563cc61f62f6fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
class puppet::openbsd inherits puppet::base {
File['puppet_config']{
owner => '_puppet'
}
Service['puppet']{
restart => '/bin/kill -HUP `/bin/cat /var/run/puppet/agent.pid`',
stop => '/bin/kill `/bin/cat /var/run/puppet/agent.pid`',
start => '/usr/local/bin/puppet agent',
hasstatus => false,
hasrestart => false,
pattern => 'puppet agent',
}
openbsd::rc_local { 'puppetd':
binary => '/usr/local/bin/puppet agent',
}
cron {
'puppetd_check':
command => '/bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep -q "puppet agent" || (sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /usr/local/bin/puppet agent)',
user => root,
minute => 0;
'puppetd_restart':
command => 'sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /bin/kill `/bin/cat /var/run/puppet/agent.pid`; /usr/local/bin/puppet agent',
minute => 0,
hour => 22,
monthday => '*/2',
}
}
|