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': {
|
'backup': {
|
||||||
'server': None,
|
'server': None,
|
||||||
'paths': [],
|
'paths': {},
|
||||||
},
|
},
|
||||||
'systemd-timers': {
|
'systemd-timers': {
|
||||||
f'backup': {
|
f'backup': {
|
||||||
|
|
|
@ -32,9 +32,9 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'backup': {
|
'backup': {
|
||||||
'paths': [
|
'paths': {
|
||||||
'/etc/nextcloud/config.php',
|
'/etc/nextcloud/config.php',
|
||||||
],
|
},
|
||||||
},
|
},
|
||||||
'nextcloud': {
|
'nextcloud': {
|
||||||
'admin_user': 'admin',
|
'admin_user': 'admin',
|
||||||
|
|
|
@ -6,9 +6,9 @@ defaults = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'backup': {
|
'backup': {
|
||||||
'paths': [
|
'paths': {
|
||||||
'/var/vmail',
|
'/var/vmail',
|
||||||
],
|
},
|
||||||
},
|
},
|
||||||
'letsencrypt': {
|
'letsencrypt': {
|
||||||
'reload_after': {
|
'reload_after': {
|
||||||
|
|
|
@ -7,9 +7,9 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'backup': {
|
'backup': {
|
||||||
'paths': [
|
'paths': {
|
||||||
'/var/lib/postgresql',
|
'/var/lib/postgresql',
|
||||||
],
|
},
|
||||||
},
|
},
|
||||||
'postgresql': {
|
'postgresql': {
|
||||||
'roles': {
|
'roles': {
|
||||||
|
@ -20,7 +20,7 @@ defaults = {
|
||||||
},
|
},
|
||||||
'databases': {},
|
'databases': {},
|
||||||
},
|
},
|
||||||
'grafana_rows': [],
|
'grafana_rows': {},
|
||||||
}
|
}
|
||||||
|
|
||||||
if node.has_bundle('zfs'):
|
if node.has_bundle('zfs'):
|
||||||
|
|
|
@ -50,12 +50,12 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'grafana_rows': [
|
'grafana_rows': {
|
||||||
'cpu',
|
'cpu',
|
||||||
'mem',
|
'mem',
|
||||||
'disk_io',
|
'disk_io',
|
||||||
'net_io',
|
'net_io',
|
||||||
],
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -103,10 +103,10 @@ def dataset_defaults(metadata):
|
||||||
def backup(metadata):
|
def backup(metadata):
|
||||||
return {
|
return {
|
||||||
'backup': {
|
'backup': {
|
||||||
'paths': [
|
'paths': {
|
||||||
options['mountpoint']
|
options['mountpoint']
|
||||||
for options in metadata.get('zfs/datasets').values()
|
for options in metadata.get('zfs/datasets').values()
|
||||||
if options.get('backup', True)
|
if options.get('backup', True)
|
||||||
],
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue