diff --git a/subiquity/common/filesystem/labels.py b/subiquity/common/filesystem/labels.py index 7fc1b13b..122f8a08 100644 --- a/subiquity/common/filesystem/labels.py +++ b/subiquity/common/filesystem/labels.py @@ -318,6 +318,7 @@ def _for_client_partition(partition, *, min_size=0): os=partition.os, offset=partition.offset, resize=partition.resize, + path=partition._path(), mount=partition.mount, format=partition.format) diff --git a/subiquity/common/types.py b/subiquity/common/types.py index 76c44aee..49279695 100644 --- a/subiquity/common/types.py +++ b/subiquity/common/types.py @@ -269,6 +269,7 @@ class Partition: os: Optional[OsProber] = None offset: Optional[int] = None resize: Optional[bool] = None + path: Optional[str] = None @attr.s(auto_attribs=True)