[PATCH] Don't crash when checking unpartitioned devices for disklabel. (#720070)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 pyanaconda/bootloader.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 3a82dda..8ab6390 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -397,8 +397,8 @@ class BootLoader(object):
         ret = True
         if self.disklabel_types:
             for disk in device.disks:
-                label_type = disk.format.labelType
-                if label_type not in self.disklabel_types:
+                label_type = getattr(disk.format, "labelType", None)
+                if not label_type or label_type not in self.disklabel_types:
                     types_str = ",".join(disklabel_types)
                     self.errors.append(_("%s must have one of the following "
                                          "disklabel types: %s.")
-- 
1.7.3.4

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux