update curtin, and add 'uuid' attribute to Partition objects

This commit is contained in:
Michael Hudson-Doyle 2023-08-10 16:56:48 +12:00
parent b0f10300eb
commit c028390a71
2 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,7 @@ parts:
source: https://git.launchpad.net/curtin
source-type: git
source-commit: 611f68afdc53c7c6d02bd64713c743380a77c59e
source-commit: 70b1190170195602734bb60307e576f07564f6da
override-pull: |
craftctl default

View File

@ -747,6 +747,7 @@ class Partition(_Formattable):
partition_type: Optional[str] = None
partition_name: Optional[str] = None
path: Optional[str] = None
uuid: Optional[str] = None
_info: Optional[StorageInfo] = attributes.for_api(default=None)