diff --git a/roles/custom/matrix-bridge-appservice-polychat/tasks/setup_install.yml b/roles/custom/matrix-bridge-appservice-polychat/tasks/setup_install.yml index c67a47b83..5b4660ac4 100644 --- a/roles/custom/matrix-bridge-appservice-polychat/tasks/setup_install.yml +++ b/roles/custom/matrix-bridge-appservice-polychat/tasks/setup_install.yml @@ -80,6 +80,14 @@ owner: "{{ matrix_user_username }}" group: "{{ matrix_user_groupname }}" +- name: Ensure matrix-appservice-polychat pino.json template exists + ansible.builtin.template: + src: "{{ role_path }}/templates/pino.json.j2" + dest: "{{ matrix_appservice_polychat_config_path }}/pino.json" + mode: 0644 + owner: "{{ matrix_user_username }}" + group: "{{ matrix_user_groupname }}" + - name: Ensure appservice-polychat registration.yaml installed ansible.builtin.copy: content: "{{ matrix_appservice_polychat_registration | to_nice_yaml(indent=2, width=999999) }}" diff --git a/roles/custom/matrix-bridge-appservice-polychat/templates/pino.json.j2 b/roles/custom/matrix-bridge-appservice-polychat/templates/pino.json.j2 new file mode 100644 index 000000000..460c45389 --- /dev/null +++ b/roles/custom/matrix-bridge-appservice-polychat/templates/pino.json.j2 @@ -0,0 +1 @@ +{"level":"debug"} \ No newline at end of file