diff options
author | Olivier Blin <dev@blino.org> | 2017-04-10 11:50:17 +0200 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2017-04-10 12:06:52 +0200 |
commit | c98115d042b34d806807301eb8c1265300e2b4a9 (patch) | |
tree | dbfea0e8ac6529346b7a97c8fdc24e45ecabda49 /modules/bugzilla/manifests | |
parent | 7ef46dabe4632e84e7b6e8d477f921bf05d4f9cc (diff) | |
download | puppet-c98115d042b34d806807301eb8c1265300e2b4a9.tar puppet-c98115d042b34d806807301eb8c1265300e2b4a9.tar.gz puppet-c98115d042b34d806807301eb8c1265300e2b4a9.tar.bz2 puppet-c98115d042b34d806807301eb8c1265300e2b4a9.tar.xz puppet-c98115d042b34d806807301eb8c1265300e2b4a9.zip |
bugzilla: data/bugzilla-update.xml should be writable by apache
Diffstat (limited to 'modules/bugzilla/manifests')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 60e037bc..2f3ba28f 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -158,6 +158,13 @@ class bugzilla { mode => '0750', } + file { [ + "$bugzilla_location/data/bugzilla-update.xml", + ]: + owner => 'apache', + group => 'apache', + mode => '0640', + } cron { 'collectstats': command => '/usr/share/bugzilla/bin/collectstats.pl', |