diff options
author | mh <mh@immerda.ch> | 2012-02-15 18:17:14 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-02-15 18:17:14 +0100 |
commit | d459255da087bda68627dc5c228056b6ebf7036b (patch) | |
tree | 9235ff7627fafadc9515ecbffe42ff038adfcc8c | |
parent | d8de9540534a3801c87278435934da3c88a69e4b (diff) |
manage selinux if enabled of plugins we manage
-rw-r--r-- | manifests/plugin.pp | 8 | ||||
-rw-r--r-- | manifests/plugin/deploy.pp | 9 |
2 files changed, 14 insertions, 3 deletions
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 { diff --git a/manifests/plugin/deploy.pp b/manifests/plugin/deploy.pp index 67cbfb8..be7748b 100644 --- a/manifests/plugin/deploy.pp +++ b/manifests/plugin/deploy.pp @@ -15,7 +15,14 @@ define munin::plugin::deploy($source = '', $ensure = 'present', $config = '') { mode => 0755, owner => root, group => 0; } - case $kernel { + + if $::selinux == 'true' { + File["munin_plugin_${name}"]{ + setype => 'munin_services_plugin_exec_t', + } + } + + case $::kernel { openbsd: { $basic_require = File['/var/run/munin'] } default: { $basic_require = Package['munin-node'] } } |