]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/postgres/manifests/init.pp
massive style guide fixups
[dsa-puppet.git] / modules / postgres / manifests / init.pp
index bb2b7689ed92c4738145afe56870ade16eed1c01..4edc5c8a6e95695004b9133c22a6e6f9cf81238b 100644 (file)
@@ -1,19 +1,17 @@
 class postgres {
-    activate_munin_check {
-        "postgres_bgwriter":;
-        "postgres_connections_db":;
-        "postgres_cache_ALL": script => "postgres_cache_";
-        "postgres_querylength_ALL": script => "postgres_querylength_";
-        "postgres_size_ALL": script => "postgres_size_";
-    }
-    file {
-        "/etc/munin/plugin-conf.d/local-postgres":
-            source  => "puppet:///modules/postgres/plugin.conf",
-            ;
-    }
-}
-
-# vim:set et:
-# vim:set sts=4 ts=4:
-# vim:set shiftwidth=4:
+       munin::check { 'postgres_bgwriter': }
+       munin::check { 'postgres_connections_db': }
+       munin::check { 'postgres_cache_ALL':
+               script => 'postgres_cache_'
+       }
+       munin::check { 'postgres_querylength_ALL':
+               script => 'postgres_querylength_'
+       }
+       munin::check { 'postgres_size_ALL':
+               script => 'postgres_size_'
+       }
 
+       file { '/etc/munin/plugin-conf.d/local-postgres':
+               source  => 'puppet:///modules/postgres/plugin.conf',
+       }
+}