2020-04-10 23:44:53 +02:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2020-10-11 16:42:45 +02:00
|
|
|
# Instantiable worker service, running inside the synapse container
|
|
|
|
# alongside the homeserver main process.
|
2020-04-10 23:44:53 +02:00
|
|
|
# c.f. https://github.com/matrix-org/synapse/pull/4662
|
|
|
|
[Unit]
|
2020-10-22 20:53:41 +02:00
|
|
|
Description=Matrix worker synapse.app.%i
|
|
|
|
AssertPathExists={{ matrix_synapse_config_dir_path }}/worker.%i.yaml
|
2020-04-10 23:44:53 +02:00
|
|
|
After=matrix-synapse.service
|
|
|
|
BindsTo=matrix-synapse.service
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
|
|
|
|
# Intentional delay, so that the homeserver (we likely depend on) can manage to start.
|
|
|
|
ExecStartPre=/bin/sleep 5
|
|
|
|
|
2020-10-11 16:42:45 +02:00
|
|
|
# no sane way of instancing more than one variable (systemd "cant-fix" 🤦)
|
|
|
|
# c.f. https://github.com/systemd/systemd/issues/14895#issuecomment-594123923
|
|
|
|
# So use good ol' shell parameter expansion to get the worker type..
|
2020-04-10 23:44:53 +02:00
|
|
|
ExecStart=/bin/sh -c "WORKER=%i; WORKER=$${WORKER%%:*}; \
|
|
|
|
exec /usr/bin/docker exec \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
matrix-synapse \
|
|
|
|
python -m synapse.app.$${WORKER} -c /data/homeserver.yaml -c /data/worker.%i.yaml"
|
|
|
|
|
2020-10-22 20:53:41 +02:00
|
|
|
# wait for worker startup & write out PID of actual worker process so systemd can handle it
|
|
|
|
ExecStartPost=/bin/sleep 5
|
|
|
|
ExecStartPost=/usr/local/bin/matrix-synapse-worker-write-pid %i /run/matrix-synapse-worker.%i.pid
|
|
|
|
|
2020-10-11 16:42:45 +02:00
|
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
2020-10-22 20:53:41 +02:00
|
|
|
ExecStop=/bin/kill $MAINPID
|
|
|
|
PIDFile=/run/matrix-synapse-worker.%i.pid
|
2020-04-10 23:44:53 +02:00
|
|
|
KillMode=process
|
|
|
|
Restart=always
|
|
|
|
RestartSec=10
|
|
|
|
SyslogIdentifier=matrix-synapse-%i
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=matrix-synapse.service
|