Scan LVM devices after RAID.

This should allow us to find LVM PVs that are on RAID devices.
This commit is contained in:
Andrius Štikonas 2018-07-15 13:03:07 +01:00
parent fde4ac62a0
commit 5828e9daac
1 changed files with 1 additions and 1 deletions

View File

@ -106,8 +106,8 @@ QList<Device*> SfdiskBackend::scanDevices(bool excludeReadOnly)
}
}
LvmDevice::scanSystemLVM(result);
SoftwareRAID::scanSoftwareRAID(result);
LvmDevice::scanSystemLVM(result); // LVM scanner needs all other devices, so should be last
}
return result;