bundles/matrix-synapse: remove conf.d, fix server name
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit

This commit is contained in:
Franzi 2020-08-18 15:34:20 +02:00
parent 5e2fea8497
commit 7d911ce835
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 3 additions and 6 deletions

View file

@ -1,4 +1,4 @@
server_name: "${server_name}"
server_name: ${server_name}
pid_file: "/var/run/matrix-synapse.pid"
public_baseurl: https://${baseurl}/
use_presence: true

View file

@ -12,11 +12,8 @@ files = {
'/etc/matrix-synapse/homeserver.signing.key': {
'content': repo.vault.decrypt_file('matrix-synapse/{}/homeserver_signing.key.vault'.format(node.name)),
},
}
directories = {
'/etc/matrix-synapse/conf.d': {
'purge': True,
'delete': True,
},
}
@ -24,7 +21,7 @@ svc_systemd = {
'matrix-synapse': {
'needs': {
'file:/etc/matrix-synapse/homeserver.yaml',
'directory:/etc/matrix-synapse/conf.d',
'file:/etc/matrix-synapse/conf.d',
'pkg_apt:matrix-synapse-py3',
},
},