]> gitweb.fluxo.info Git - puppet-virtual.git/commitdiff
update munin script_path for comparability with the newer munin module
authorMicah Anderson <micah@riseup.net>
Wed, 23 Dec 2009 03:29:52 +0000 (22:29 -0500)
committerMicah Anderson <micah@riseup.net>
Wed, 23 Dec 2009 03:29:52 +0000 (22:29 -0500)
manifests/vserver.pp

index 2d8598480f45561cbb742484b30154a6ad66e20f..11068b653c0a382d73943823e6d11f177a3d9023 100644 (file)
@@ -74,7 +74,7 @@ class vserver::host {
   munin::plugin {
     "vserver_loadavg":
       config => "user root\n",
-      script_path => "/usr/local/share/munin-plugins";
+      script_path_in => "/usr/local/share/munin-plugins";
   }
   
   # This creates a RSS graph for each vserver on the host (note after more than 4 vservers this can get noisy)
@@ -82,7 +82,7 @@ class vserver::host {
     "vserver_resources_RSS":
       ensure => "vserver_resources",
       config => "user root\nenv.resource RSS",
-      script_path => "/usr/local/share/munin-plugins";
+      script_path_in => "/usr/local/share/munin-plugins";
   }
   
   # This creates a VM graph for each vserver on the host (note after more than 4 vservers this can get noisy)
@@ -90,14 +90,14 @@ class vserver::host {
     "vserver_resources_VM":
       ensure => "vserver_resources",
       config => "user root\nenv.resource VM",
-      script_path => "/usr/local/share/munin-plugins";
+      script_path_in => "/usr/local/share/munin-plugins";
   }
   
   # This creates a VM graph for each vserver on the host (note after more than 4 vservers this can get noisy)
   munin::plugin {
     "vserver_cpu_":
       config => "user root\n",
-      script_path => "/usr/local/share/munin-plugins";
+      script_path_in => "/usr/local/share/munin-plugins";
   }
 }