From 46580db2cdd1ffc2c3cb3d7c0db39af4dfc75aaa Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Thu, 26 Jul 2018 16:31:39 +0200 Subject: [PATCH] Do not ignore "Image out-of-sync" internal LVs These are still "valid" existing internal RAID LVs just not synced yet. --- blivet/devices/lvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blivet/devices/lvm.py b/blivet/devices/lvm.py index 05d65fdae..39deca838 100644 --- a/blivet/devices/lvm.py +++ b/blivet/devices/lvm.py @@ -1010,7 +1010,7 @@ def get_type(cls, lv_attr, lv_name): # pylint: disable=unused-argument attr_letters = {cls.data: ("T", "C"), cls.meta: ("e",), cls.log: ("l", "L"), - cls.image: ("i",), + cls.image: ("i", "I"), cls.origin: ("o",), cls.cache_pool: ("C",)}