summaryrefslogtreecommitdiff
path: root/manifests/plugin/scriptpaths.pp
blob: bfdf1bed64f3b60120cbed1a7ec3282c69974b4d (plain)
1
2
3
4
5
6
7
8
9
10
class munin::plugin::scriptpaths {

  case $operatingsystem {
    	gentoo: { $script_path =  "/usr/libexec/munin/plugins" }
    	debian: { $script_path =  "/usr/share/munin/plugins" }
    	centos: { $script_path =  "/usr/share/munin/plugins" }
    	openbsd: { $script_path =  "/opt/munin/lib/plugins/" }
    	default: { $script_path =  "/usr/share/munin/plugins" }
    }
}