2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2019-03-03 17:22:52 +00:00
|
|
|
[Unit]
|
2020-10-13 23:35:41 +00:00
|
|
|
Description=Matrix Appservice Discord bridge
|
2019-05-17 16:14:12 +00:00
|
|
|
{% for service in matrix_appservice_discord_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_appservice_discord_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2019-03-03 17:22:52 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 22:21:55 +00:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-appservice-discord 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-appservice-discord 2>/dev/null || true'
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2019-06-07 09:15:37 +00:00
|
|
|
# Intentional delay, so that the homeserver (we likely depend on) can manage to start.
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStartPre={{ matrix_host_command_sleep }} 5
|
2019-06-07 09:15:37 +00:00
|
|
|
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-appservice-discord \
|
2019-03-03 17:22:52 +00:00
|
|
|
--log-driver=none \
|
2019-03-04 14:42:22 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2019-03-03 17:22:52 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-05-24 22:41:04 +00:00
|
|
|
{% if matrix_appservice_discord_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_appservice_discord_container_http_host_bind_port }}:9005 \
|
2019-03-03 17:22:52 +00:00
|
|
|
{% endif %}
|
2020-11-25 08:49:59 +00:00
|
|
|
--mount type=bind,src={{ matrix_appservice_discord_config_path }},dst=/cfg \
|
|
|
|
--mount type=bind,src={{ matrix_appservice_discord_data_path }},dst=/data \
|
2019-05-17 16:14:12 +00:00
|
|
|
{% for arg in matrix_appservice_discord_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2019-06-26 07:30:51 +00:00
|
|
|
{{ matrix_appservice_discord_docker_image }} \
|
|
|
|
node /build/src/discordas.js -p 9005 -c /cfg/config.yaml -f /cfg/registration.yaml
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-appservice-discord 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-appservice-discord 2>/dev/null || true'
|
2019-03-03 17:22:52 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-appservice-discord
|
2019-03-03 17:22:52 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|