2022-04-23 13:19:24 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Matrix web forms bot
|
|
|
|
{% for service in matrix_bot_buscarron_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_bot_buscarron_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
DefaultDependencies=no
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2022-11-04 14:37:47 +00:00
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
2022-11-04 14:40:25 +00:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-bot-buscarron 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-bot-buscarron 2>/dev/null || true'
|
2022-04-23 13:19:24 +00:00
|
|
|
|
2022-11-04 14:39:35 +00:00
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-bot-buscarron \
|
2022-04-23 13:19:24 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
|
|
|
--read-only \
|
|
|
|
--network={{ matrix_docker_network }} \
|
|
|
|
--env-file={{ matrix_bot_buscarron_config_path }}/env \
|
|
|
|
--mount type=bind,src={{ matrix_bot_buscarron_data_path }},dst=/data \
|
|
|
|
{% for arg in matrix_bot_buscarron_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_bot_buscarron_docker_image }}
|
|
|
|
|
2022-11-04 14:40:25 +00:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-bot-buscarron 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-bot-buscarron 2>/dev/null || true'
|
2022-04-23 13:19:24 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-bot-buscarron
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|