diff options
Diffstat (limited to 'modules/cron_puppet/manifests')
-rw-r--r-- | modules/cron_puppet/manifests/init.pp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/cron_puppet/manifests/init.pp b/modules/cron_puppet/manifests/init.pp new file mode 100644 index 0000000..a694a6f --- /dev/null +++ b/modules/cron_puppet/manifests/init.pp | |||
@@ -0,0 +1,17 @@ | |||
1 | class cron_puppet { | ||
2 | file { 'post-hook': | ||
3 | ensure => file, | ||
4 | path => '/etc/puppetlabs/puppet/.git/hooks/post-merge', | ||
5 | source => 'puppet:///modules/cron_puppet/post-merge', | ||
6 | mode => '0755', | ||
7 | owner => root, | ||
8 | group => root, | ||
9 | } | ||
10 | cron { 'puppet-apply': | ||
11 | ensure => present, | ||
12 | command => "cd /etc/puppetlabs/puppet ; /usr/bin/git pull", | ||
13 | user => root, | ||
14 | minute => '*/30', | ||
15 | require => File['post-hook'], | ||
16 | } | ||
17 | } | ||