This commit is contained in:
mwiegand 2021-06-26 00:40:45 +02:00
parent e3f3fd1a81
commit 5e73a7634f
3 changed files with 10 additions and 9 deletions

View file

@ -34,11 +34,11 @@ fi
if [[ "$?" == "0" ]]
then
echo "SUCCESS"
zfs bookmark "$source_dataset@$new_bookmark" "$source_dataset#$new_bookmark"
zfs destroy "$source_dataset@$new_bookmark"
echo "SUCCESS"
else
echo "ERROR"
zfs destroy "$source_dataset@$new_bookmark"
echo "ERROR"
exit 99
fi

View file

@ -33,10 +33,10 @@ for name, config in node.metadata.get('zfs/datasets', {}).items():
for name, config in node.metadata.get('zfs/pools', {}).items():
zfs_pools[name] = config
# actions[f'pool_{name}_enable_trim'] = {
# 'command': f'zpool set autotrim=on {name}',
# 'unless': f'zpool get autotrim -H -o value {name} | grep -q on',
# 'needs': [
# f'zfs_pool:{name}'
# ]
# }
actions[f'pool_{name}_enable_trim'] = {
'command': f'zpool set autotrim=on {name}',
'unless': f'zpool get autotrim -H -o value {name} | grep -q on',
'needs': [
f'zfs_pool:{name}'
]
}

View file

@ -29,6 +29,7 @@ defaults = {
},
},
'zfsutils-linux': {
'backports': True,
'needed_by': {
'pkg_apt:zfs-zed',
'zfs_dataset:',