summaryrefslogtreecommitdiff
path: root/puppet/modules/nagios/manifests/plugin/scriptpaths.pp
blob: 9cd4b5d6598fe9cee7ccf64ac60fb998f2a461bf (plain)
1
2
3
4
5
6
class nagios::plugin::scriptpaths {
    case $::hardwaremodel {
    	x86_64: { $script_path =  "/usr/lib64/nagios/plugins/" }
    	default: { $script_path =  "/usr/lib/nagios/plugins" }
    }
}