Franziska Kunsmann
3c105d3295
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
86 lines
2.6 KiB
Python
86 lines
2.6 KiB
Python
actions = {
|
|
'mautrix-telegram_create_virtualenv': {
|
|
'command': '/usr/bin/python3 -m virtualenv -p python3 /opt/mautrix-telegram/venv/',
|
|
'unless': 'test -d /opt/mautrix-telegram/venv/',
|
|
'needs': {
|
|
# actually /opt/mautrix-telegram, but we don't create that
|
|
'directory:/opt/mautrix-telegram/src',
|
|
},
|
|
},
|
|
'mautrix-telegram_install_bridge': {
|
|
'command': 'cd /opt/mautrix-telegram/src && /opt/mautrix-telegram/venv/bin/pip install --upgrade pip .[all]',
|
|
'needs': {
|
|
'action:mautrix-telegram_create_virtualenv',
|
|
},
|
|
'triggered': True,
|
|
},
|
|
'mautrix-telegram_upgrade_database': {
|
|
'command': 'cd /opt/mautrix-telegram/src && /opt/mautrix-telegram/venv/bin/alembic -x config=/opt/mautrix-telegram/config.yaml upgrade head',
|
|
'needs': {
|
|
'action:mautrix-telegram_install_bridge',
|
|
'postgres_db:mautrix-telegram',
|
|
'postgres_role:mautrix-telegram',
|
|
},
|
|
'triggered': True,
|
|
},
|
|
}
|
|
|
|
users = {
|
|
'mautrix-telegram': {
|
|
'home': '/opt/mautrix-telegram',
|
|
},
|
|
}
|
|
|
|
directories = {
|
|
'/opt/mautrix-telegram': {},
|
|
'/opt/mautrix-telegram/src': {},
|
|
}
|
|
|
|
git_deploy = {
|
|
'/opt/mautrix-telegram/src': {
|
|
'repo': 'https://github.com/mautrix/telegram.git',
|
|
'rev': node.metadata.get('mautrix-telegram/version'),
|
|
'triggers': {
|
|
'action:mautrix-telegram_install_bridge',
|
|
'action:mautrix-telegram_upgrade_database',
|
|
'svc_systemd:mautrix-telegram:restart',
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
svc_systemd = {
|
|
'mautrix-telegram': {
|
|
'needs': {
|
|
'action:mautrix-telegram_upgrade_database',
|
|
'file:/etc/systemd/system/mautrix-telegram.service',
|
|
'file:/opt/mautrix-telegram/config.yaml',
|
|
'postgres_db:mautrix-telegram',
|
|
'postgres_role:mautrix-telegram',
|
|
},
|
|
},
|
|
}
|
|
|
|
files = {
|
|
'/opt/mautrix-telegram/registration.yaml': {
|
|
'content_type': 'mako',
|
|
'triggers': {
|
|
'svc_systemd:mautrix-telegram:restart',
|
|
},
|
|
},
|
|
'/opt/mautrix-telegram/config.yaml': {
|
|
'content_type': 'mako',
|
|
'triggers': {
|
|
'svc_systemd:mautrix-telegram:restart',
|
|
},
|
|
},
|
|
'/etc/systemd/system/mautrix-telegram.service': {
|
|
'triggers': {
|
|
'action:systemd-reload',
|
|
'svc_systemd:mautrix-telegram:restart',
|
|
},
|
|
},
|
|
}
|
|
|
|
if node.has_bundle('matrix-synapse'):
|
|
files['/opt/mautrix-telegram/registration.yaml']['triggers'].add('svc_systemd:matrix-synapse:restart')
|