bundlewrap/bundles/matrix-synapse/items.py
Franzi 7d911ce835
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit
bundles/matrix-synapse: remove conf.d, fix server name
2020-08-18 15:34:20 +02:00

29 lines
766 B
Python

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)),
},
'/etc/matrix-synapse/conf.d': {
'delete': True,
},
}
svc_systemd = {
'matrix-synapse': {
'needs': {
'file:/etc/matrix-synapse/homeserver.yaml',
'file:/etc/matrix-synapse/conf.d',
'pkg_apt:matrix-synapse-py3',
},
},
}