summaryrefslogtreecommitdiff
path: root/manifests/linux.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/linux.pp')
-rw-r--r--manifests/linux.pp11
1 files changed, 7 insertions, 4 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index 6fc17ba..7bf3331 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -1,3 +1,4 @@
+# puppet on linux
class puppet::linux inherits puppet::base {
package { 'puppet':
@@ -12,10 +13,12 @@ class puppet::linux inherits puppet::base {
require => Package[puppet],
}
- file { '/etc/cron.d/puppetd.cron':
- source => [ "puppet:///modules/site_puppet/cron.d/puppetd",
+ file { '/etc/cron.d/puppetd':
+ 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,
+ 'puppet:///modules/puppet/cron.d/puppetd' ],
+ owner => root,
+ group => 0,
+ mode => '0644',
}
}