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.
2 parents 888788a + 4f021c4 commit af3b353Copy full SHA for af3b353
roles/orahost/tasks/main.yml
@@ -314,7 +314,12 @@
314
tags: hostfs
315
316
- name: filesystem | Change permission on directories
317
- file: path={{ item.1.mntp }} state=directory owner={{ oracle_user }} group={{ oracle_group }} mode=775
+ file:
318
+ path: "{{ item.1.mntp }}"
319
+ owner: "{{ item.1.owner | default(oracle_user) }}"
320
+ group: "{{ item.1.group | default(oracle_group) }}"
321
+ mode: "{{ item.1.mode | default('0775') }}"
322
+ state: directory
323
with_subelements:
324
- "{{ host_fs_layout }}"
325
- filesystem
0 commit comments