2020-04-12 14:17:30 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
2020-10-13 23:35:41 +00:00
|
|
|
Description=Matrix Mx Puppet Slack bridge
|
2020-04-12 14:17:30 +00:00
|
|
|
{% for service in matrix_mx_puppet_slack_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_mx_puppet_slack_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2020-04-12 14:17:30 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 22:21:55 +00:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2021-01-27 08:22:46 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mx-puppet-slack 2>/dev/null'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mx-puppet-slack 2>/dev/null'
|
2020-04-12 14:17:30 +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
|
2020-04-12 14:17:30 +00:00
|
|
|
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-mx-puppet-slack \
|
2020-04-12 14:17:30 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
|
|
|
--network={{ matrix_docker_network }} \
|
2020-05-22 08:12:06 +00:00
|
|
|
{% if matrix_mx_puppet_slack_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_mx_puppet_slack_container_http_host_bind_port }}:{{ matrix_mx_puppet_slack_appservice_port }} \
|
|
|
|
{% endif %}
|
2020-04-12 14:17:30 +00:00
|
|
|
-e CONFIG_PATH=/config/config.yaml \
|
|
|
|
-e REGISTRATION_PATH=/config/registration.yaml \
|
|
|
|
-v {{ matrix_mx_puppet_slack_config_path }}:/config:z \
|
|
|
|
-v {{ matrix_mx_puppet_slack_data_path }}:/data:z \
|
|
|
|
{% for arg in matrix_mx_puppet_slack_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_mx_puppet_slack_docker_image }}
|
|
|
|
|
2021-01-27 08:22:46 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-mx-puppet-slack 2>/dev/null'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-mx-puppet-slack 2>/dev/null'
|
2020-04-12 14:17:30 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-mx-puppet-slack
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|