1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/matrix/files/synapse-worker@.service
Jan Alexander Steffens (heftig) 3fa35b7609
matrix: Update synapse to 0.18.0
Add federation_reader as a another worker.
2020-07-31 00:06:51 +02:00

25 lines
556 B
SYSTEMD

[Unit]
Description=Synapse Matrix worker (%i)
BindsTo=synapse.service
After=synapse.service
AssertPathExists=/etc/synapse/worker-%i.yaml
[Service]
Type=notify
NotifyAccess=main
ExecReload=/bin/kill -HUP $MAINPID
Restart=on-abort
User=synapse
WorkingDirectory=~
ExecStart=/var/lib/synapse/venv/bin/python -m synapse.app.generic_worker --config-path=/etc/synapse/homeserver.yaml --config-path=/etc/synapse/worker-%i.yaml
SyslogIdentifier=synapse
Environment=LD_PRELOAD=/usr/lib/libjemalloc.so
[Install]
RequiredBy=synapse.service
# vim:set ft=systemd: