diff options
Diffstat (limited to 'modules/bugzilla/manifests')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 7b684a7c..3e36fb42 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -75,13 +75,19 @@ class bugzilla { require => Git::Snapshot[$bugzilla_location], } - file { "$bugzilla_location/data/assets": + file { "$bugzilla_location/data": ensure => directory, owner => 'apache', group => 'apache', mode => '0770' } + file { "$bugzilla_location/data/assets": + ensure => directory, + owner => 'apache', + group => 'apache', + mode => '0770' + } file { "$bugzilla_location/robots.txt": group => 'apache', |