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: I7f4bda340967378e62d862c9066987ac85c16e29
This commit is contained in:
Andrey 2017-01-17 17:16:56 -06:00 committed by Jesse Pretorius (odyssey4me)
parent e42baba1ce
commit a9ff02aba1

View File

@ -38,7 +38,7 @@
mode: "{{ item.mode | default(omit) }}"
with_items:
- { path: "/openstack", owner: "root", group: "root" }
- { path: "{{ neutron_conf_dir }}" }
- { path: "{{ neutron_conf_dir }}", mode: "0750" }
- { path: "{{ neutron_conf_dir }}/plugins" }
- { path: "{{ neutron_conf_dir }}/plugins/{{ neutron_plugin_type.split('.')[0] }}" }
- { path: "{{ neutron_conf_dir }}/rootwrap.d", owner: "root", group: "root" }