2019-07-28 16:52:30 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
2020-10-13 23:35:41 +00:00
|
|
|
Description=Matrix Mautrix Hangouts bridge
|
2019-07-28 16:52:30 +00:00
|
|
|
{% for service in matrix_mautrix_hangouts_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_mautrix_hangouts_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2019-07-28 16:52:30 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2022-11-04 14:37:47 +00:00
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
2023-12-06 09:52:23 +00:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-mautrix-hangouts matrix-mautrix-hangouts-db 2>/dev/null || true'
|
2022-11-04 14:40:25 +00:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-mautrix-hangouts matrix-mautrix-hangouts-db 2>/dev/null || true'
|
2022-11-04 14:39:35 +00:00
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-mautrix-hangouts-db \
|
2019-07-28 16:52:30 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2020-12-14 10:34:59 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-07-28 16:52:30 +00:00
|
|
|
-v {{ matrix_mautrix_hangouts_config_path }}:/config:z \
|
|
|
|
-v {{ matrix_mautrix_hangouts_data_path }}:/data:z \
|
|
|
|
{{ matrix_mautrix_hangouts_docker_image }} \
|
|
|
|
alembic -x config=/config/config.yaml upgrade head
|
|
|
|
|
|
|
|
# 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-07-28 16:52:30 +00:00
|
|
|
|
2022-11-04 14:39:35 +00:00
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-mautrix-hangouts \
|
2019-07-28 16:52:30 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
|
|
|
--network={{ matrix_docker_network }} \
|
2020-06-28 06:01:48 +00:00
|
|
|
{% if matrix_mautrix_hangouts_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_mautrix_hangouts_container_http_host_bind_port }}:8080 \
|
|
|
|
{% endif %}
|
2019-07-28 16:52:30 +00:00
|
|
|
-v {{ matrix_mautrix_hangouts_config_path }}:/config:z \
|
|
|
|
-v {{ matrix_mautrix_hangouts_data_path }}:/data:z \
|
|
|
|
{% for arg in matrix_mautrix_hangouts_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_mautrix_hangouts_docker_image }} \
|
2021-02-03 11:22:05 +00:00
|
|
|
python3 -m mautrix_hangouts -c /config/config.yaml --no-update
|
2019-07-28 16:52:30 +00:00
|
|
|
|
2023-12-06 09:52:23 +00:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-mautrix-hangouts 2>/dev/null || true'
|
2022-11-04 14:40:25 +00:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-mautrix-hangouts 2>/dev/null || true'
|
2019-07-28 16:52:30 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-mautrix-hangouts
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|