aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2017-08-05 19:59:00 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2017-08-05 19:59:00 +0200
commit262df49bd556fa23310b569440b1e3d31a69474b (patch)
treed7f3463bf235506be8d57e8a888138b4abb6f040
parent6157434ceb83de078bd63a396713b5625931fb31 (diff)
downloadpuppet-262df49bd556fa23310b569440b1e3d31a69474b.tar
puppet-262df49bd556fa23310b569440b1e3d31a69474b.tar.gz
puppet-262df49bd556fa23310b569440b1e3d31a69474b.tar.bz2
puppet-262df49bd556fa23310b569440b1e3d31a69474b.tar.xz
puppet-262df49bd556fa23310b569440b1e3d31a69474b.zip
Fix perms of $bugzilla_location/graphs (From LpSolit)
-rwxr-xr-xmodules/bugzilla/manifests/init.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index c07d4ea2..1d1fd8a0 100755
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -45,6 +45,12 @@ class bugzilla {
mode => '0640',
content => template('bugzilla/params.json')
}
+ file { "$bugzilla_location/graphs":
+ ensure => directory,
+ owner => 'apache',
+ group => 'apache',
+ mode => '0770'
+ }
apache::webapp_other { 'bugzilla':
webapp_file => 'bugzilla/webapp_bugzilla.conf',