Ensure 0755 default mode on new directories
This patch ensures that all directories under `/openstack/venvs` are created with `0755` permissions by default. This prevents permission denied errors when running certain commands from the virtual environment. Change-Id: Id93d49a4bd6ce2a056d41aea54ec9299d9d32b5c
This commit is contained in:
parent
cede11ace8
commit
7912044ba2
@ -60,6 +60,7 @@
|
||||
file:
|
||||
path: "{{ ironic_bin | dirname }}"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
register: ironic_venv_dir
|
||||
|
||||
- name: Unarchive pre-built venv
|
||||
|
@ -48,7 +48,7 @@
|
||||
group: "{{ item.group|default(ironic_system_group_name) }}"
|
||||
mode: "{{ item.mode|default('0755') }}"
|
||||
with_items:
|
||||
- { path: "/openstack", mode: "0755", owner: "root", group: "root" }
|
||||
- { path: "/openstack/venvs", mode: "0755", owner: "root", group: "root" }
|
||||
- { path: "/etc/ironic" }
|
||||
- { path: "/etc/ironic/rootwrap.d" }
|
||||
- { path: "/etc/sudoers.d", mode: "0750", owner: "root", group: "root" }
|
||||
|
Loading…
Reference in New Issue
Block a user