fix munin script path
This commit is contained in:
parent
9871e9319c
commit
78fa3e62cf
1 changed files with 8 additions and 4 deletions
|
@ -3,18 +3,22 @@ class mysql::server::munin::base {
|
||||||
file {
|
file {
|
||||||
"/usr/local/share/munin-plugins/mysql_connections":
|
"/usr/local/share/munin-plugins/mysql_connections":
|
||||||
source => "$fileserver/munin/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":
|
"/usr/local/share/munin-plugins/mysql_qcache":
|
||||||
source => "$fileserver/munin/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":
|
"/usr/local/share/munin-plugins/mysql_qcache_mem":
|
||||||
source => "$fileserver/munin/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":
|
"/usr/local/share/munin-plugins/mysql_size_all":
|
||||||
source => "$fileserver/munin/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";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue