diff options
author | Gabriel Filion <lelutin@gmail.com> | 2013-01-02 12:14:12 -0500 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2013-01-02 12:14:12 -0500 |
commit | 560b7c829e8ec043cf603fd6b1e2a1d3e0946a63 (patch) | |
tree | 420db02979146e6c14cf57701e1541e7b97649df /manifests/linux.pp | |
parent | aaf7ffad90958aff6e068c0496bd5f91e8759e4d (diff) | |
parent | 87b8cf7133beb4c9dd6f6e7692d374d302f8ea5a (diff) |
Merge branch 'puppet_cron'
Conflicts:
manifests/cron.pp
manifests/linux.pp
take the changes from puppet_cron
Diffstat (limited to 'manifests/linux.pp')
-rw-r--r-- | manifests/linux.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp index d17b386..e752788 100644 --- a/manifests/linux.pp +++ b/manifests/linux.pp @@ -13,12 +13,12 @@ class puppet::linux inherits puppet::base { Service['puppet']{ require => Package[puppet], } - + + file { '/etc/cron.d/puppetd': + ensure => absent + } + # For backwards compatibility, remove this so that the cron is not duplicated file { '/etc/cron.d/puppetd.cron': - source => [ "puppet:///modules/site_puppet/cron.d/puppetd", - "puppet:///modules/puppet/cron.d/puppetd.${operatingsystem}", - "puppet:///modules/puppet/cron.d/puppetd" ], - owner => root, group => 0, mode => 0644, ensure => absent } } |