From 56f7baaadb5c20032eaf204b7b7b507c1ddc4ada Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 17 Jan 2017 17:21:55 -0600 Subject: [PATCH] Change permission for conf folder According to the security guide config files should not be reachable by any users except the owner and root. Change-Id: Id5ed097ac7208f6bb8872d39436aa6accaff5f30 --- tasks/glance_pre_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/glance_pre_install.yml b/tasks/glance_pre_install.yml index 05dd014a..35645e7e 100644 --- a/tasks/glance_pre_install.yml +++ b/tasks/glance_pre_install.yml @@ -38,7 +38,7 @@ mode: "{{ item.mode|default('0755') }}" with_items: - { path: "/openstack", mode: "0755", owner: "root", group: "root" } - - { path: "/etc/glance" } + - { path: "/etc/glance", mode: "0755" } - { path: "/var/cache/glance" } - { path: "{{ glance_system_user_home }}" } - { path: "{{ glance_system_user_home }}/cache/api", mode: "0700" }