Skip to content

Commit

Permalink
orahost: fix wrong permissions in filesystem | Create directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Rendanic committed Mar 31, 2024
1 parent 821b8e7 commit 4673437
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelogs/fragments/orahost_dir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- "orahost: fix wrong mode in filesystem | Create directories ()"
6 changes: 3 additions & 3 deletions roles/orahost/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,10 @@
- name: filesystem | Create directories
ansible.builtin.file:
path: "{{ item.1.mntp }}"
owner: "{{ item.1.owner | default(oracle_user) }}"
group: "{{ item.1.group | default(oracle_group) }}"
mode: "{{ item.1.mode | default('0775') }}"
state: directory
owner: "{{ oracle_user }}"
group: "{{ oracle_group }}"
mode: "0775"
with_subelements:
- "{{ host_fs_layout }}"
- filesystem
Expand Down

0 comments on commit 4673437

Please sign in to comment.