This commit is contained in:
mwiegand 2021-06-21 00:30:56 +02:00
parent e74b43fde4
commit 3a3111f669

View file

@ -30,6 +30,11 @@ defaults = {
},
},
},
'backup': {
'files': [
'/etc/nextcloud/config.php',
],
},
'nextcloud': {
'admin_user': 'admin',
'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'),
@ -54,19 +59,11 @@ defaults = {
},
},
},
}
@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(),
'zfs': {
'datasets': {
'tank/nexcloud': {
'mountpoint': '/var/lib/nextcloud',
},
},
}
},
}