mirror of
https://github.com/famedly/ansible-collection-services
synced 2024-11-10 05:54:14 +00:00
fix(zammad): stringify oct numbers
This commit is contained in:
parent
cb611a86f4
commit
194db557d0
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
state: directory
|
||||
owner: "{{ zammad_user_res.uid }}"
|
||||
group: "{{ zammad_user_res.group }}"
|
||||
mode: "{{ item.mode | default (0755) }}"
|
||||
mode: "{{ item.mode | default('0755') }}"
|
||||
tags: [ 'prepare', 'prepare-zammad' ]
|
||||
notify: Restart zammad-stack
|
||||
loop: "{{ zammad_directories }}"
|
||||
|
@ -34,7 +34,7 @@
|
|||
dest: "{{ zammad_base_path }}/elasticsearch-config/{{ item.src }}"
|
||||
owner: "{{ zammad_user_res.uid }}"
|
||||
group: "{{ zammad_user_res.group }}"
|
||||
mode: "{{ item.mode | default (0755) }}"
|
||||
mode: "{{ item.mode | default('0755') }}"
|
||||
tags: [ 'prepare', 'prepare-zammad' ]
|
||||
notify: Restart elasticsearch
|
||||
loop: "{{ zammad_elasticsearch_files }}"
|
||||
|
|
Loading…
Reference in a new issue