Procházet zdrojové kódy

Merge pull request #1999 from cvwright/dendrite-extra-args

Fix Dendrite extra arguments getting lost
pull/2000/head
Slavi Pantaleev před 3 roky
committed by GitHub
rodič
revize
a3e89970be
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      roles/matrix-dendrite/templates/dendrite/systemd/matrix-dendrite.service.j2

+ 1
- 1
roles/matrix-dendrite/templates/dendrite/systemd/matrix-dendrite.service.j2 Zobrazit soubor

@@ -46,13 +46,13 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-dendrite \
{% endfor %}
{{ matrix_dendrite_docker_image }} \
-config /data/dendrite.yaml \
{{ matrix_dendrite_process_extra_arguments|join(' ') }} \
{% if matrix_dendrite_http_bind_address %}
-http-bind-address {{ matrix_dendrite_http_bind_address }}
{% endif %}
{% if matrix_dendrite_https_bind_address %}
-https-bind-address {{ matrix_dendrite_https_bind_address }}
{% endif %}
{{ matrix_dendrite_process_extra_arguments|join(' ') }}

ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-dendrite 2>/dev/null || true'
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-dendrite 2>/dev/null || true'


Načítá se…
Zrušit
Uložit