We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8f778 commit 8eaf77dCopy full SHA for 8eaf77d
changelogs/fragments/orahost_dir.yml
@@ -0,0 +1,3 @@
1
+---
2
+bugfixes:
3
+ - "orahost: fix wrong permissions in filesystem | Create directories (oravirt#424)"
roles/orahost/tasks/main.yml
@@ -255,10 +255,10 @@
255
- name: filesystem | Create directories
256
ansible.builtin.file:
257
path: "{{ item.1.mntp }}"
258
+ owner: "{{ item.1.owner | default(oracle_user) }}"
259
+ group: "{{ item.1.group | default(oracle_group) }}"
260
+ mode: "{{ item.1.mode | default('0775') }}"
261
state: directory
- owner: "{{ oracle_user }}"
- group: "{{ oracle_group }}"
- mode: "0775"
262
with_subelements:
263
- "{{ host_fs_layout }}"
264
- filesystem
0 commit comments