]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/postgres/manifests/init.pp
massive style guide fixups
[dsa-puppet.git] / modules / postgres / manifests / init.pp
1 class postgres {
2         munin::check { 'postgres_bgwriter': }
3         munin::check { 'postgres_connections_db': }
4         munin::check { 'postgres_cache_ALL':
5                 script => 'postgres_cache_'
6         }
7         munin::check { 'postgres_querylength_ALL':
8                 script => 'postgres_querylength_'
9         }
10         munin::check { 'postgres_size_ALL':
11                 script => 'postgres_size_'
12         }
13
14         file { '/etc/munin/plugin-conf.d/local-postgres':
15                 source  => 'puppet:///modules/postgres/plugin.conf',
16         }
17 }