summaryrefslogtreecommitdiff
path: root/manifests/plugin/scriptpaths.pp
blob: ebaa6fa46fefd03333992be204ee9b20e3d6d055 (plain)
1
2
3
4
5
6
7
8
9
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" }
    }
}