Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

orahost: fix wrong permissions in filesystem | Create directories #424

Merged
merged 1 commit into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 permissions in filesystem | Create directories (oravirt#424)"
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
Loading