2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2019-01-31 05:37:23 +00:00
|
|
|
[Unit]
|
2020-10-13 23:35:41 +00:00
|
|
|
Description=Matrix Appservice IRC bridge
|
2019-05-16 00:07:40 +00:00
|
|
|
{% for service in matrix_appservice_irc_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_appservice_irc_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2019-01-31 05:37:23 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 22:21:55 +00:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-appservice-irc 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-appservice-irc 2>/dev/null || true'
|
2019-05-16 00:07:40 +00:00
|
|
|
|
2019-06-07 09:15:37 +00:00
|
|
|
# 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-06-07 09:15:37 +00:00
|
|
|
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-appservice-irc \
|
2019-01-31 05:37:23 +00:00
|
|
|
--log-driver=none \
|
2019-03-12 17:17:51 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2019-01-31 05:37:23 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-05-24 22:41:04 +00:00
|
|
|
{% if matrix_appservice_irc_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_appservice_irc_container_http_host_bind_port }}:9999 \
|
2019-01-31 16:20:45 +00:00
|
|
|
{% endif %}
|
2019-06-19 09:28:58 +00:00
|
|
|
-v {{ matrix_appservice_irc_config_path }}:/config:z \
|
|
|
|
-v {{ matrix_appservice_irc_data_path }}:/data:z \
|
2019-05-16 00:07:40 +00:00
|
|
|
{% for arg in matrix_appservice_irc_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2020-01-25 08:04:21 +00:00
|
|
|
--entrypoint=/bin/bash \
|
2019-01-31 05:37:23 +00:00
|
|
|
{{ matrix_appservice_irc_docker_image }} \
|
2020-01-25 08:04:21 +00:00
|
|
|
-c 'node app.js -c /config/config.yaml -f /config/registration.yaml -p 9999'
|
2019-05-16 00:07:40 +00:00
|
|
|
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-appservice-irc 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-appservice-irc 2>/dev/null || true'
|
2019-01-31 05:37:23 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-appservice-irc
|
2019-01-31 05:37:23 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|