summaryrefslogtreecommitdiff
path: root/manifests/client
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-12-22 22:32:56 -0500
committerMicah Anderson <micah@riseup.net>2009-12-22 22:32:56 -0500
commit68238a10e33a4fae78e81b3aa74064c973a52306 (patch)
tree79fbabdd16cb68ed0dffbe1b88bdec94af233027 /manifests/client
parentba05b95dee4b83c727795bb596eebc9951637d92 (diff)
more standardization of indenting/formatting
Diffstat (limited to 'manifests/client')
-rw-r--r--manifests/client/base.pp42
1 files changed, 21 insertions, 21 deletions
diff --git a/manifests/client/base.pp b/manifests/client/base.pp
index b3fcc4a..b834e9b 100644
--- a/manifests/client/base.pp
+++ b/manifests/client/base.pp
@@ -1,23 +1,23 @@
class munin::client::base {
- service { 'munin-node':
- ensure => running,
- enable => true,
- hasstatus => true,
- hasrestart => true,
- }
- file {'/etc/munin':
- ensure => directory,
- mode => 0755, owner => root, group => 0;
- }
- $real_munin_allow = $munin_allow ? {
- '' => '127.0.0.1',
- default => $munin_allow
- }
- file {'/etc/munin/munin-node.conf':
- content => template("munin/munin-node.conf.$operatingsystem"),
- notify => Service['munin-node'],
- mode => 0644, owner => root, group => 0,
- }
- munin::register { $fqdn: }
- include munin::plugins::base
+ service { 'munin-node':
+ ensure => running,
+ enable => true,
+ hasstatus => true,
+ hasrestart => true,
+ }
+ file {'/etc/munin':
+ ensure => directory,
+ mode => 0755, owner => root, group => 0;
+ }
+ $real_munin_allow = $munin_allow ? {
+ '' => '127.0.0.1',
+ default => $munin_allow
+ }
+ file {'/etc/munin/munin-node.conf':
+ content => template("munin/munin-node.conf.$operatingsystem"),
+ notify => Service['munin-node'],
+ mode => 0644, owner => root, group => 0,
+ }
+ munin::register { $fqdn: }
+ include munin::plugins::base
}