add matrix-synapse bundle

This commit is contained in:
Franzi 2020-04-05 11:38:31 +02:00
parent 29eeffbdc3
commit 8a26def21c
Signed by: kunsi
GPG key ID: 12E3D2136B818350
8 changed files with 267 additions and 6 deletions

View file

@ -0,0 +1,35 @@
pkg_apt = {
'matrix-synapse-py3': {}
}
files = {
'/etc/matrix-synapse/homeserver.yaml': {
'content_type': 'mako',
'context': node.metadata['matrix-synapse'],
'needs': {
'pkg_apt:matrix-synapse-py3',
},
'triggers': {
'svc_systemd:matrix-synapse:restart',
},
},
'/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,
},
}
svc_systemd = {
'matrix-synapse': {
'needs': {
'file:/etc/matrix-synapse/homeserver.yaml',
'directory:/etc/matrix-synapse/conf.d',
'pkg_apt:matrix-synapse-py3',
},
},
}