aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2017-04-16 23:39:42 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2017-04-16 23:39:42 +0200
commitf43ff5c60ca81fa4457850c13d7466944e82dbdb (patch)
tree998b9b0b7a7d9a8ad00d99f75924e55006897797
parent6b258aed587dc8974d643f01bbb822b76eaff6e4 (diff)
downloadpuppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar
puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.gz
puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.bz2
puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.tar.xz
puppet-f43ff5c60ca81fa4457850c13d7466944e82dbdb.zip
Fix perms for data
-rwxr-xr-xmodules/bugzilla/manifests/init.pp8
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',