diff --git a/manifests/server/munin/base.pp b/manifests/server/munin/base.pp index a5331c5..50aa084 100644 --- a/manifests/server/munin/base.pp +++ b/manifests/server/munin/base.pp @@ -3,18 +3,22 @@ class mysql::server::munin::base { file { "/usr/local/share/munin-plugins/mysql_connections": source => "$fileserver/munin/mysql_connections", - mode => 0755, owner => root, group => root; + mode => 0755, owner => root, group => root, + script_path_in => "/usr/local/share/munin-plugins"; "/usr/local/share/munin-plugins/mysql_qcache": source => "$fileserver/munin/mysql_qcache", - mode => 0755, owner => root, group => root; + mode => 0755, owner => root, group => root, + script_path_in => "/usr/local/share/munin-plugins"; "/usr/local/share/munin-plugins/mysql_qcache_mem": source => "$fileserver/munin/mysql_qcache_mem", - mode => 0755, owner => root, group => root; + mode => 0755, owner => root, group => root, + script_path_in => "/usr/local/share/munin-plugins"; "/usr/local/share/munin-plugins/mysql_size_all": source => "$fileserver/munin/mysql_size_all", - mode => 0755, owner => root, group => root; + mode => 0755, owner => root, group => root, + script_path_in => "/usr/local/share/munin-plugins"; } }