Do not reassemble RAID devices after partition table commit.

Reassembling RAID devices causes devices to disappear and
reappear with a different name.
This commit is contained in:
Andrius Štikonas 2018-07-23 22:52:59 +01:00
parent 4b723be585
commit 700dddb875
1 changed files with 0 additions and 2 deletions

View File

@ -57,8 +57,6 @@ bool SfdiskPartitionTable::commit(quint32 timeout)
ExternalCommand(QStringLiteral("blockdev"), { QStringLiteral("--rereadpt"), m_device->deviceNode() }).run();
ExternalCommand(QStringLiteral("udevadm"), { QStringLiteral("trigger") }).run();
SoftwareRAID::reassembleSoftwareRAID(m_device->deviceNode());
return true;
}