From 2f9d47ed67df32c41bb6eaefd60476989bcea49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Tue, 27 Mar 2018 03:43:42 +0200 Subject: [PATCH] anaconda: really set default paritioning layout setDefaultPartitioning is called when executing kickstart "autopart" command - which is the case if one choose to not change disk partitioning. But in manual partitioning there is also an option to start with automatic layout and in that case setDefaultPartitioning isn't called at all. Which results in failed partitioning (missing '/' and bootable partition). Similar thing is already fixed in master commit 378cfc44dd218c61b838f4f9011dcfd790df59eb. QubesOS/qubes-issues#2294 Fixes QubesOS/qubes-issues#3334 --- anaconda/pyanaconda/installclasses/qubes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/anaconda/pyanaconda/installclasses/qubes.py b/anaconda/pyanaconda/installclasses/qubes.py index 591fd4f..5e68543 100644 --- a/anaconda/pyanaconda/installclasses/qubes.py +++ b/anaconda/pyanaconda/installclasses/qubes.py @@ -56,6 +56,7 @@ class InstallClass(BaseInstallClass): def configure(self, anaconda): BaseInstallClass.configure(self, anaconda) + self.setDefaultPartitioning(anaconda.storage) def setDefaultPartitioning(self, storage): BaseInstallClass.setDefaultPartitioning(self,