From d459255da087bda68627dc5c228056b6ebf7036b Mon Sep 17 00:00:00 2001 From: mh Date: Wed, 15 Feb 2012 18:17:14 +0100 Subject: manage selinux if enabled of plugins we manage --- manifests/plugin.pp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'manifests/plugin.pp') diff --git a/manifests/plugin.pp b/manifests/plugin.pp index 69b7322..b76a5da 100644 --- a/manifests/plugin.pp +++ b/manifests/plugin.pp @@ -21,7 +21,7 @@ define munin::plugin ( file { $plugin: ensure => absent, } } default: { - case $kernel { + case $::kernel { openbsd: { $basic_require = File['/var/run/munin'] } default: { $basic_require = Package['munin-node'] } } @@ -35,7 +35,11 @@ define munin::plugin ( require => $real_require, notify => Service['munin-node']; } - + if $::selinux == 'true' { + File[$plugin]{ + setype => 'munin_services_plugin_exec_t', + } + } } } case $config { -- cgit v1.2.3