From f637d139d2d68d3d410bf68c04ed445e983d5e3e Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Thu, 7 Mar 2019 15:50:41 +0100 Subject: [PATCH] Fix tempest.conf permissions Currently permissions are set to be root, but tempest runs as 'tempest' user - and gets permission denied. Change-Id: Ia3a8a2e780f95c6aa16a9d2483d987322741cfbf --- ansible/roles/tempest/templates/tempest.json.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/tempest/templates/tempest.json.j2 b/ansible/roles/tempest/templates/tempest.json.j2 index 3ff5ea788e..14b95fd216 100644 --- a/ansible/roles/tempest/templates/tempest.json.j2 +++ b/ansible/roles/tempest/templates/tempest.json.j2 @@ -4,7 +4,7 @@ { "source": "{{ container_config_directory }}/tempest.conf", "dest": "/etc/tempest/tempest.conf", - "owner": "root", + "owner": "tempest", "perm": "0600" } ]