ansible-collection-famedly-.../tasks/logging.yml

36 lines
887 B
YAML
Raw Normal View History

---
- name: Logging config (systemd)
block:
- name: create logging folder
file:
name: "{{ matrix_synapse_log_dir }}"
state: directory
owner: synapse
group: synapse
- name: copy syslog config
template:
src: syslog-synapse.conf.j2
dest: /etc/rsyslog.d/matrix_synapse.conf
owner: root
notify: restart rsyslog
- name: template logrotate config
template:
src: logrotate.j2
dest: /etc/logrotate.d/matrix_synapse
owner: root
when: matrix_synapse_supervision_method == "systemd"
# TODO: Figure out how to make sure that logging ends up in rsyslog no matter what system we run on
- name: Deploy log config
2019-02-15 02:09:11 +00:00
copy:
src: "log.config"
2019-02-21 22:17:57 +00:00
dest: "{{ matrix_synapse_base_path }}/log.config"
owner: synapse
group: synapse
notify:
2019-02-15 02:08:08 +00:00
- "restart matrix-synapse"