summaryrefslogtreecommitdiff
path: root/manifests/plugin/scriptpaths.pp
blob: ce27384dd196ed15b8a215a7d67663e01ca0d242 (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" }
    }
}