summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/plugin.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index 535d76d..df31fe2 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -259,3 +259,19 @@ class munin::plugins::djbdns inherits munin::plugins::base {
}
}
+class munin::plugins::postgres inherits munin::plugins::base {
+ file {
+ [ "$script_path_default/pg_conn" ]:
+ source => "puppet://$servername/munin/plugins/pg_conn",
+ ensure => file,
+ mode => 0755, owner => root, group => 0;
+ [ "$script_path_default/pg__connections" ]:
+ source => "puppet://$servername/munin/plugins/pg__connections",
+ ensure => file,
+ mode => 0755, owner => root, group => 0;
+ [ "$script_path_default/pg__locks" ]:
+ source => "puppet://$servername/munin/plugins/pg__locks",
+ ensure => file,
+ mode => 0755, owner => root, group => 0;
+ }
+}