From 03d1ada220f33b69f53757c2e23a35bb64fdccba Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 12 Feb 2022 18:09:40 +0100 Subject: [PATCH] bundles/zfs: explicitely set mountpoint for all datasets --- bundles/zfs/items.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bundles/zfs/items.py b/bundles/zfs/items.py index 696138f..72d9092 100644 --- a/bundles/zfs/items.py +++ b/bundles/zfs/items.py @@ -78,8 +78,7 @@ for name, attrs in node.metadata.get('zfs/datasets', {}).items(): if 'mountpoint' not in attrs: zfs_datasets[name]['canmount'] = 'off' - # https://github.com/bundlewrap/bundlewrap/commit/76647590d684446f146cedb89518458f18dd229e - # zfs_datasets[name]['mountpoint'] = 'none' + zfs_datasets[name]['mountpoint'] = 'none' else: zfs_datasets[name]['canmount'] = 'on'