summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-01-02 13:57:27 +0100
committervarac <varacanero@zeromail.org>2013-01-02 13:57:27 +0100
commit5660f23abd0013a9f967df184e30dc9b2da3eeb3 (patch)
tree41152811b2e1b0952baaf4acd6c908a7d315f905
parent923304d7b5b6f05df161e0c388d61c9b0b98c210 (diff)
linted linux.pp
-rw-r--r--manifests/linux.pp14
1 files changed, 8 insertions, 6 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index 13788ef..b46ad70 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -13,12 +13,14 @@ class puppet::linux inherits puppet::base {
Service['puppet']{
require => Package[puppet],
}
-
+
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
+ ensure => absent,
+ 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'
}
}