Sfoglia il codice sorgente

Merge pull request #2163 from jimeh/fix-goofys-startup-order-issue

fix(goofys): fix synapse systemd unit file to correctly require goofys
pull/2164/head
Slavi Pantaleev 3 anni fa
committed by GitHub
parent
commit
0616107346
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      group_vars/matrix_servers

+ 2
- 2
group_vars/matrix_servers Vedi File

@@ -2364,7 +2364,7 @@ matrix_synapse_systemd_required_services_list: |
+
(['matrix-postgres.service'] if matrix_postgres_enabled else [])
+
(['matrix-goofys'] if matrix_s3_media_store_enabled else [])
(['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
}}

matrix_synapse_systemd_wanted_services_list: |
@@ -2650,7 +2650,7 @@ matrix_dendrite_systemd_required_services_list: |
+
(['matrix-postgres.service'] if matrix_postgres_enabled else [])
+
(['matrix-goofys'] if matrix_s3_media_store_enabled else [])
(['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
}}

matrix_dendrite_systemd_wanted_services_list: |


Caricamento…
Annulla
Salva