bundlewrap/bundles/nextcloud/metadata.py
mwiegand b4ea5849f5 wip
2021-06-20 21:18:53 +02:00

73 lines
1.8 KiB
Python

import string
from uuid import UUID
defaults = {
'apt': {
'packages': {
'php': {},
'php-curl': {},
'php-gd': {},
'php-json': {},
'php-xml': {},
'php-mbstring': {},
'php-cli': {},
'php-cgi': {},
'php-zip': {},
},
},
'archive': {
'paths': {
'/var/lib/nextcloud': {
'exclude': [
'^appdata_',
'^updater-',
'^nextcloud\.log',
'^updater\.log',
'^[^/]+/cache',
'^[^/]+/files_versions',
'^[^/]+/files_trashbin',
],
},
},
},
'nextcloud': {
'data_dir': '/var/lib/nextcloud',
'admin_user': 'admin',
'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'),
},
'nginx': {
'vhosts': {
'nextcloud': {
'webroot': '/opt/nextcloud',
'php': True,
},
},
},
'postgresql': {
'roles': {
'nextcloud': {
'password': repo.vault.password_for(f'{node.name} nextcloud db pw'),
},
},
'databases': {
'nextcloud': {
'owner': 'nextcloud',
},
},
},
}
@metadata_reactor.provides(
'nextcloud/instance_id',
)
def instance_id(metadata):
return {
'nextcloud': {
'instance_id': repo.libs.derive_string.derive_string(
UUID(metadata.get('id')).bytes,
length=12,
choices=(string.ascii_lowercase + string.digits).encode(),
).decode(),
},
}