2023-02-08 16:44:12 +01:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Matrix Draupnir bot
|
2023-10-03 14:05:30 +02:00
|
|
|
{% for service in matrix_bot_draupnir_systemd_wanted_services_list %}
|
2023-02-08 16:44:12 +01:00
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_bot_draupnir_systemd_required_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
DefaultDependencies=no
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
2023-12-06 10:52:23 +01: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-bot-draupnir 2>/dev/null || true'
|
2023-02-08 16:44:12 +01:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-bot-draupnir 2>/dev/null || true'
|
|
|
|
|
2024-01-07 08:04:27 +01:00
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \
|
|
|
|
--rm \
|
|
|
|
--name=matrix-bot-draupnir \
|
2023-02-08 16:44:12 +01:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
|
|
|
--read-only \
|
2024-01-07 08:04:27 +01:00
|
|
|
--network={{ matrix_bot_draupnir_container_network }} \
|
2023-02-08 16:44:12 +01:00
|
|
|
--mount type=bind,src={{ matrix_bot_draupnir_config_path }},dst=/data/config,ro \
|
|
|
|
--mount type=bind,src={{ matrix_bot_draupnir_data_path }},dst=/data \
|
|
|
|
{% for arg in matrix_bot_draupnir_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2024-01-24 15:26:05 +01:00
|
|
|
{{ matrix_bot_draupnir_docker_image }} \
|
|
|
|
bot --draupnir-config /data/config/production.yaml
|
2023-02-08 16:44:12 +01:00
|
|
|
|
2024-01-07 08:04:27 +01:00
|
|
|
{% for network in matrix_bot_draupnir_container_additional_networks %}
|
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-bot-draupnir
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} start --attach matrix-bot-draupnir
|
|
|
|
|
2023-12-06 10:52:23 +01: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-bot-draupnir 2>/dev/null || true'
|
2023-02-08 16:44:12 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-bot-draupnir 2>/dev/null || true'
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-bot-draupnir
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|