diff options
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 68a0e7d9..60e037bc 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -75,6 +75,14 @@ class bugzilla { require => Git::Snapshot[$bugzilla_location], } + file { '/usr/share/bugzilla/data/assets': + ensure => directory, + owner => 'apache', + group => 'apache', + mode => '0770' + } + + file { '/usr/share/bugzilla/robots.txt': group => 'apache', mode => '0640', |