From 3d78c4f04d78f58914f600b2b2ce3835968cc18d Mon Sep 17 00:00:00 2001 From: Rafal Szmigiel Date: Mon, 28 Nov 2016 13:11:44 +0100 Subject: [PATCH] Ensures $keystone_wsgi_script_path right permissions. Closes-Bug: 1645299 In the case of more restrictive, system-wide umask setting, directory $keystone_wsgi_script_path may become inaccessible for web-server resulting in keystone failures. Change-Id: I4cdc053bb88da0a7c2604ff0b431de57e24b41eb (cherry picked from commit 4f15fb64b1cb60388efbee75acbfb3b13a8fa1f6) --- manifests/wsgi/apache.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/wsgi/apache.pp b/manifests/wsgi/apache.pp index e87a298ee..a0601d162 100644 --- a/manifests/wsgi/apache.pp +++ b/manifests/wsgi/apache.pp @@ -231,6 +231,7 @@ class keystone::wsgi::apache ( ensure => directory, owner => 'keystone', group => 'keystone', + mode => '0755', require => Anchor['keystone::install::end'], }