wip
This commit is contained in:
parent
25ba946216
commit
393aee068f
6 changed files with 12 additions and 12 deletions
|
@ -7,7 +7,7 @@ defaults = {
|
|||
},
|
||||
'backup': {
|
||||
'server': None,
|
||||
'paths': [],
|
||||
'paths': {},
|
||||
},
|
||||
'systemd-timers': {
|
||||
f'backup': {
|
||||
|
|
|
@ -32,9 +32,9 @@ defaults = {
|
|||
},
|
||||
},
|
||||
'backup': {
|
||||
'paths': [
|
||||
'paths': {
|
||||
'/etc/nextcloud/config.php',
|
||||
],
|
||||
},
|
||||
},
|
||||
'nextcloud': {
|
||||
'admin_user': 'admin',
|
||||
|
|
|
@ -6,9 +6,9 @@ defaults = {
|
|||
}
|
||||
},
|
||||
'backup': {
|
||||
'paths': [
|
||||
'paths': {
|
||||
'/var/vmail',
|
||||
],
|
||||
},
|
||||
},
|
||||
'letsencrypt': {
|
||||
'reload_after': {
|
||||
|
|
|
@ -7,9 +7,9 @@ defaults = {
|
|||
},
|
||||
},
|
||||
'backup': {
|
||||
'paths': [
|
||||
'paths': {
|
||||
'/var/lib/postgresql',
|
||||
],
|
||||
},
|
||||
},
|
||||
'postgresql': {
|
||||
'roles': {
|
||||
|
@ -20,7 +20,7 @@ defaults = {
|
|||
},
|
||||
'databases': {},
|
||||
},
|
||||
'grafana_rows': [],
|
||||
'grafana_rows': {},
|
||||
}
|
||||
|
||||
if node.has_bundle('zfs'):
|
||||
|
|
|
@ -50,12 +50,12 @@ defaults = {
|
|||
},
|
||||
},
|
||||
},
|
||||
'grafana_rows': [
|
||||
'grafana_rows': {
|
||||
'cpu',
|
||||
'mem',
|
||||
'disk_io',
|
||||
'net_io',
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -103,10 +103,10 @@ def dataset_defaults(metadata):
|
|||
def backup(metadata):
|
||||
return {
|
||||
'backup': {
|
||||
'paths': [
|
||||
'paths': {
|
||||
options['mountpoint']
|
||||
for options in metadata.get('zfs/datasets').values()
|
||||
if options.get('backup', True)
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue