2022-06-23 18:24:52 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Maubot
|
2022-06-23 19:57:52 +00:00
|
|
|
{% for service in matrix_bot_maubot_systemd_required_services_list %}
|
2022-06-23 18:24:52 +00:00
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
2022-06-23 19:57:52 +00:00
|
|
|
{% for service in matrix_bot_maubot_systemd_wanted_services_list %}
|
2022-06-23 18:24:52 +00:00
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
DefaultDependencies=no
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-06-24 16:01:51 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-maubot 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true'
|
2022-06-23 18:24:52 +00:00
|
|
|
|
2022-06-24 16:01:51 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-bot-maubot \
|
2022-06-25 06:50:22 +00:00
|
|
|
--log-driver=none \
|
2022-06-23 19:57:52 +00:00
|
|
|
-e UID={{ matrix_user_uid }} \
|
|
|
|
-e GID={{ matrix_user_gid }} \
|
2022-06-24 15:36:53 +00:00
|
|
|
--read-only \
|
2022-06-24 16:21:13 +00:00
|
|
|
-v {{ matrix_bot_maubot_data_path }}:/data:z \
|
2022-06-25 06:50:22 +00:00
|
|
|
{% for arg in matrix_bot_maubot_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
--network={{ matrix_docker_network }} \
|
2022-06-24 10:39:51 +00:00
|
|
|
{% if matrix_bot_maubot_expose_management_interface|bool %}
|
2022-06-24 09:50:52 +00:00
|
|
|
-p {{ matrix_bot_maubot_port }}:29316 \
|
2022-06-24 10:39:51 +00:00
|
|
|
{% endif %}
|
2022-06-25 06:50:22 +00:00
|
|
|
{{ matrix_bot_maubot_docker_image }}
|
2022-06-23 18:24:52 +00:00
|
|
|
|
2022-06-24 16:01:51 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-maubot 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true'
|
2022-06-23 18:24:52 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2022-06-24 15:54:57 +00:00
|
|
|
SyslogIdentifier=matrix-bot-maubot
|
2022-06-23 18:24:52 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|