wip
This commit is contained in:
parent
e74b43fde4
commit
3a3111f669
1 changed files with 12 additions and 15 deletions
|
@ -30,6 +30,11 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'backup': {
|
||||||
|
'files': [
|
||||||
|
'/etc/nextcloud/config.php',
|
||||||
|
],
|
||||||
|
},
|
||||||
'nextcloud': {
|
'nextcloud': {
|
||||||
'admin_user': 'admin',
|
'admin_user': 'admin',
|
||||||
'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'),
|
'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'),
|
||||||
|
@ -54,19 +59,11 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
'zfs': {
|
||||||
|
'datasets': {
|
||||||
|
'tank/nexcloud': {
|
||||||
@metadata_reactor.provides(
|
'mountpoint': '/var/lib/nextcloud',
|
||||||
'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(),
|
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue