Replace fake spaces by real ones.

This commit is contained in:
Viyurz 2024-02-17 19:09:25 +01:00
parent c2269f8fd4
commit 4f805ae80d

View file

@ -29,7 +29,7 @@
- name: "Create directory {{ volumes['synapse_datadir'] }} with correct permissions" - name: "Create directory {{ volumes['synapse_datadir'] }} with correct permissions"
file: file:
path: "{{ volumes['synapse_datadir'] }}" path: "{{ volumes['synapse_datadir'] }}"
state: directory state: directory
owner: "{{ users['synapse'] + uid_shift }}" owner: "{{ users['synapse'] + uid_shift }}"
group: "{{ users['synapse'] + uid_shift }}" group: "{{ users['synapse'] + uid_shift }}"
@ -38,7 +38,7 @@
- name: "Create directory {{ volumes['synapse_postgres_datadir'] }} with correct permissions" - name: "Create directory {{ volumes['synapse_postgres_datadir'] }} with correct permissions"
file: file:
path: "{{ volumes['synapse_postgres_datadir'] }}" path: "{{ volumes['synapse_postgres_datadir'] }}"
state: directory state: directory
owner: "{{ users['synapse_postgres'] + uid_shift }}" owner: "{{ users['synapse_postgres'] + uid_shift }}"
group: "{{ users['synapse_postgres'] + uid_shift }}" group: "{{ users['synapse_postgres'] + uid_shift }}"