diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-07 23:50:59 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-07 23:50:59 +0200 |
commit | 3c0d5cac0c783108da09e93163fe3d522b4b6f5e (patch) | |
tree | 52c471a8d702f252009213821ce4f9f946fcbef1 /modules/bugzilla | |
parent | 66e11a56dbfceac357e35821042bb2fcab21cfd0 (diff) | |
download | puppet-3c0d5cac0c783108da09e93163fe3d522b4b6f5e.tar puppet-3c0d5cac0c783108da09e93163fe3d522b4b6f5e.tar.gz puppet-3c0d5cac0c783108da09e93163fe3d522b4b6f5e.tar.bz2 puppet-3c0d5cac0c783108da09e93163fe3d522b4b6f5e.tar.xz puppet-3c0d5cac0c783108da09e93163fe3d522b4b6f5e.zip |
Try to fix files perm
Diffstat (limited to 'modules/bugzilla')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 78e2a7d5..07ba3d81 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -81,6 +81,15 @@ class bugzilla { content => template('bugzilla/robots.txt') } + file { [ + '/usr/share/bugzilla/admin.cgi', + '/usr/share/bugzilla/attachment.cgi' + ]: + group => 'apache', + mode => '0750', + } + + cron { 'collectstats': command => '/usr/share/bugzilla/bin/collectstats.pl', user => 'apache', |