mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-02-28 09:53:09 +00:00
Quote YAML mode values to satisfy octal lint rules
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
ansible.builtin.file:
|
||||
path: "{{ item.path }}"
|
||||
state: directory
|
||||
mode: 0750
|
||||
mode: '0750'
|
||||
owner: "{{ matrix_user_name }}"
|
||||
group: "{{ matrix_group_name }}"
|
||||
with_items:
|
||||
@@ -30,14 +30,14 @@
|
||||
dest: "{{ matrix_synapse_admin_base_path }}/labels"
|
||||
owner: "{{ matrix_user_name }}"
|
||||
group: "{{ matrix_group_name }}"
|
||||
mode: 0640
|
||||
mode: '0640'
|
||||
register: matrix_synapse_admin_support_files_result
|
||||
|
||||
- name: Ensure matrix-synapse-admin configuration installed
|
||||
ansible.builtin.copy:
|
||||
content: "{{ matrix_synapse_admin_configuration | to_nice_json }}"
|
||||
dest: "{{ matrix_synapse_admin_config_path }}/config.json"
|
||||
mode: 0644
|
||||
mode: '0644'
|
||||
owner: "{{ matrix_user_name }}"
|
||||
group: "{{ matrix_group_name }}"
|
||||
register: matrix_synapse_admin_config_result
|
||||
@@ -88,7 +88,7 @@
|
||||
ansible.builtin.template:
|
||||
src: "{{ role_path }}/templates/systemd/matrix-synapse-admin.service.j2"
|
||||
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-synapse-admin.service"
|
||||
mode: 0644
|
||||
mode: '0644'
|
||||
register: matrix_synapse_admin_systemd_service_result
|
||||
|
||||
- name: Determine whether Synapse Admin needs a restart
|
||||
|
||||
Reference in New Issue
Block a user