diff options
author | micah <micah@muck.riseup.net> | 2013-03-20 14:44:00 -0400 |
---|---|---|
committer | micah <micah@muck.riseup.net> | 2013-03-20 14:44:00 -0400 |
commit | 5c15d0cf46cef4b1d01df49b390cd452d8d41f76 (patch) | |
tree | 944f59955da3ed4531abbc818052d12d44d15152 /manifests | |
parent | 33123befc87bc46bc76bb0700171c2e2ad58fe9f (diff) |
Security: plugin-config should not me world readable as it might contain passwords
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/plugin.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp index a0989a8..d243b66 100644 --- a/manifests/plugin.pp +++ b/manifests/plugin.pp @@ -52,7 +52,7 @@ define munin::plugin ( default: { file { $plugin_conf: content => "[${name}]\n$config\n", - mode => 0644, owner => root, group => 0, + mode => 0640, owner => root, group => 0, } if $require { File[$plugin_conf]{ |