Skip to content

Commit

Permalink
allow setting access controls for database files
Browse files Browse the repository at this point in the history
  • Loading branch information
mabezi committed Jan 19, 2025
1 parent ad06fa8 commit d9f6a73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/postfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
- name: update access databases
ansible.builtin.template: src=postfix/access
dest={{ item.key }}
mode="{{ item.mode | default('0664') }}"
owner={{ item.owner | default("root") }}
group={{ item.group | default("root") }}
mode="{{ item.value.mode | default('0664') }}"
owner={{ item.value.owner | default("root") }}
group={{ item.value.group | default("root") }}
with_dict: "{{ mta_access_databases }}"
register: access_database_update

Expand Down

0 comments on commit d9f6a73

Please sign in to comment.