X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fpostgres%2Fmanifests%2Finit.pp;h=4edc5c8a6e95695004b9133c22a6e6f9cf81238b;hb=3eb533e5499e66423bafdedaf6c7d08ead1772de;hp=bb2b7689ed92c4738145afe56870ade16eed1c01;hpb=3817334616fc4370c954be504023014709fe38da;p=dsa-puppet.git diff --git a/modules/postgres/manifests/init.pp b/modules/postgres/manifests/init.pp index bb2b7689..4edc5c8a 100644 --- a/modules/postgres/manifests/init.pp +++ b/modules/postgres/manifests/init.pp @@ -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', + } +}