2019-05-07 21:23:35 +02:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-09-01 17:51:07 +02:00
|
|
|
[Unit]
|
2020-10-14 01:35:41 +02:00
|
|
|
Description=Matrix Mautrix Telegram bridge
|
2019-05-14 16:47:22 +02:00
|
|
|
{% for service in matrix_mautrix_telegram_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_mautrix_telegram_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 10:36:39 +01:00
|
|
|
DefaultDependencies=no
|
2018-09-01 17:51:07 +02:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 23:21:55 +01:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-04-11 08:05:33 +02:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mautrix-telegram 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mautrix-telegram 2>/dev/null || true'
|
2019-05-14 16:47:22 +02:00
|
|
|
|
2019-06-07 11:15:37 +02:00
|
|
|
# Intentional delay, so that the homeserver (we likely depend on) can manage to start.
|
2020-05-27 18:53:52 +02:00
|
|
|
ExecStartPre={{ matrix_host_command_sleep }} 5
|
2019-06-07 11:15:37 +02:00
|
|
|
|
2020-05-27 18:53:52 +02:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-mautrix-telegram \
|
2018-09-26 08:11:19 +02:00
|
|
|
--log-driver=none \
|
2019-01-28 14:40:16 +01:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2018-09-01 17:51:07 +02:00
|
|
|
--network={{ matrix_docker_network }} \
|
2022-03-12 19:14:08 +01:00
|
|
|
{% if matrix_mautrix_telegram_appservice_public_enabled and matrix_mautrix_telegram_container_http_host_bind_port %}
|
2019-05-26 19:50:52 +02:00
|
|
|
-p {{ matrix_mautrix_telegram_container_http_host_bind_port }}:8080 \
|
2019-03-01 22:01:46 +01:00
|
|
|
{% endif %}
|
2019-06-15 08:43:43 +02:00
|
|
|
-v {{ matrix_mautrix_telegram_config_path }}:/config:z \
|
|
|
|
-v {{ matrix_mautrix_telegram_data_path }}:/data:z \
|
2019-05-14 16:47:22 +02:00
|
|
|
{% for arg in matrix_mautrix_telegram_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2019-01-28 14:40:16 +01:00
|
|
|
{{ matrix_mautrix_telegram_docker_image }} \
|
2021-02-03 12:22:05 +01:00
|
|
|
python3 -m mautrix_telegram -c /config/config.yaml --no-update
|
2019-05-14 16:47:22 +02:00
|
|
|
|
2022-04-11 08:05:33 +02:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mautrix-telegram 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mautrix-telegram 2>/dev/null || true'
|
2018-09-01 17:51:07 +02:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 02:41:45 +02:00
|
|
|
SyslogIdentifier=matrix-mautrix-telegram
|
2018-09-01 17:51:07 +02:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|