diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-16 23:39:42 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-16 23:39:42 +0200 |
commit | f43ff5c60ca81fa4457850c13d7466944e82dbdb (patch) | |
tree | 998b9b0b7a7d9a8ad00d99f75924e55006897797 /modules/bugzilla | |
parent | 6b258aed587dc8974d643f01bbb822b76eaff6e4 (diff) | |
download | puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.gz puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.bz2 puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.xz puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.zip |
Fix perms for data
Diffstat (limited to 'modules/bugzilla')
-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', |