summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-08-06 19:36:40 +0200
committermh <mh@immerda.ch>2010-08-06 19:36:40 +0200
commit7d904841c15873db9ac1745f659d8464fd45f41a (patch)
tree991567a2557fa59b6502d2c0bcf87f6c786c5c34 /manifests/puppetmaster/checklastrun.pp
parent6bd681ab05072964efc95ecfe2816e371e45a862 (diff)
codestyle - whitespace
Only code style and whitespace formatting issues. Everything should no be in ligne.
Diffstat (limited to 'manifests/puppetmaster/checklastrun.pp')
-rw-r--r--manifests/puppetmaster/checklastrun.pp22
1 files changed, 11 insertions, 11 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index 0c0126d..0c3af5f 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -1,13 +1,13 @@
class puppet::puppetmaster::checklastrun {
- file{"/usr/local/bin/puppetlast":
- source => [ "puppet://$server/modules/site-puppet/master/puppetlast",
- "puppet://$server/modules/puppet/master/puppetlast"],
- owner => root, group => 0, mode => 0700;
- }
- file{'/etc/cron.d/puppetlast.cron':
- content => "40 10,22 * * * root /usr/local/bin/puppetlast\n",
- require => File["/usr/local/bin/puppetlast"],
- owner => root, group => 0, mode => 0644,
- notify => service["cron"];
- }
+ file{"/usr/local/bin/puppetlast":
+ source => [ "puppet://$server/modules/site-puppet/master/puppetlast",
+ "puppet://$server/modules/puppet/master/puppetlast" ],
+ owner => root, group => 0, mode => 0700;
+ }
+ file{'/etc/cron.d/puppetlast.cron':
+ content => "40 10,22 * * * root /usr/local/bin/puppetlast\n",
+ require => File["/usr/local/bin/puppetlast"],
+ owner => root, group => 0, mode => 0644,
+ notify => service["cron"];
+ }
}