backup openhab

This commit is contained in:
mwiegand 2021-11-12 16:59:57 +01:00
parent b5489cd22f
commit 72561bdb52
4 changed files with 22 additions and 6 deletions

View file

@ -40,9 +40,16 @@ def zfs(metadata):
'readonly': 'off', 'readonly': 'off',
'backup': False, 'backup': False,
} }
# for zfs send/recv # for zfs send/recv
if other_node.has_bundle('zfs'): if other_node.has_bundle('zfs'):
# base datasets for each tank
for pool in other_node.metadata.get('zfs/pools'):
datasets[f"tank/{other_node.metadata.get('id')}/{pool}"] = {
'mountpoint': None,
'readonly': 'on',
'backup': False,
}
# actual datasets
for path in other_node.metadata.get('backup/paths'): for path in other_node.metadata.get('backup/paths'):
for dataset, config in other_node.metadata.get('zfs/datasets').items(): for dataset, config in other_node.metadata.get('zfs/datasets').items():
if path == config.get('mountpoint'): if path == config.get('mountpoint'):

View file

@ -45,7 +45,7 @@ fi
if [[ "$?" == "0" ]] if [[ "$?" == "0" ]]
then then
zfs bookmark "$source_dataset@$new_bookmark" "$source_dataset#$new_bookmark" zfs bookmark "$source_dataset@$new_bookmark" "$source_dataset#$new_bookmark"
zfs destroy "$source_dataset@$new_bookmark" #zfs destroy "$source_dataset@$new_bookmark" # keep snapshots?
echo "SUCCESS" echo "SUCCESS"
else else
zfs destroy "$source_dataset@$new_bookmark" zfs destroy "$source_dataset@$new_bookmark"

View file

@ -1,8 +1,16 @@
defaults = { defaults = {
'apt': { 'apt': {
'packages': { 'packages': {
'jq': {}, 'jq': {
'rsync': {}, 'needed_by': {
'svc_systemd:backup.timer',
},
},
'rsync': {
'needed_by': {
'svc_systemd:backup.timer',
},
},
}, },
}, },
'backup': { 'backup': {

View file

@ -1,9 +1,10 @@
{ {
'hostname': '10.0.0.17', 'hostname': '10.0.0.17',
'groups': [ 'groups': [
'raspberry-pi', 'backup',
'debian-11', 'debian-11',
'monitored', 'monitored',
'raspberry-pi',
'webserver', 'webserver',
], ],
'bundles': [ 'bundles': [
@ -39,7 +40,7 @@
'pools': { 'pools': {
'tank': { 'tank': {
'devices': [ 'devices': [
'/dev/sda', '/dev/mmcblk1p3',
], ],
}, },
}, },