File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -876,11 +876,7 @@ def _get_microcode(self) -> Path | None:
876876 return vendor .get_ucode ()
877877 return None
878878
879- def _prepare_fs_type (
880- self ,
881- fs_type : FilesystemType ,
882- mountpoint : Path | None ,
883- ) -> None :
879+ def _prepare_fs_type (self , fs_type : FilesystemType ) -> None :
884880 if (pkg := fs_type .installation_pkg ) is not None :
885881 self ._base_packages .append (pkg )
886882
@@ -915,7 +911,7 @@ def minimal_installation(
915911 for vg in self ._disk_config .lvm_config .vol_groups :
916912 for vol in vg .volumes :
917913 if vol .fs_type is not None :
918- self ._prepare_fs_type (vol .fs_type , vol . mountpoint )
914+ self ._prepare_fs_type (vol .fs_type )
919915
920916 types = (EncryptionType .LVM_ON_LUKS , EncryptionType .LUKS_ON_LVM )
921917 if self ._disk_encryption .encryption_type in types :
@@ -926,7 +922,7 @@ def minimal_installation(
926922 if part .fs_type is None :
927923 continue
928924
929- self ._prepare_fs_type (part .fs_type , part . mountpoint )
925+ self ._prepare_fs_type (part .fs_type )
930926
931927 if part in self ._disk_encryption .partitions :
932928 self ._prepare_encrypt ()
You can’t perform that action at this time.
0 commit comments