diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-08-05 19:59:00 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-08-05 19:59:00 +0200 |
commit | 262df49bd556fa23310b569440b1e3d31a69474b (patch) | |
tree | d7f3463bf235506be8d57e8a888138b4abb6f040 | |
parent | 6157434ceb83de078bd63a396713b5625931fb31 (diff) | |
download | puppet-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-x | modules/bugzilla/manifests/init.pp | 6 |
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', |