From f43ff5c60ca81fa4457850c13d7466944e82dbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Sun, 16 Apr 2017 23:39:42 +0200 Subject: Fix perms for data --- modules/bugzilla/manifests/init.pp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'modules') 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', -- cgit v1.2.1