异机还原不能还原/etc/fstab和/etc/.bootinfo两个文件,为了保留UUID
This commit is contained in:
parent
b3178da4b5
commit
f078dde013
|
@ -308,6 +308,12 @@ QStringList UDiskSystemRestoreProxy::getRsyncArgs(SystemRestoreScene scene)
|
||||||
args << QString("--exclude=") + item;
|
args << QString("--exclude=") + item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 异机还原
|
||||||
|
if (m_backupWrapper.m_isOtherMachine) {
|
||||||
|
args << "--exclude=/etc/.bootinfo";
|
||||||
|
args << "--exclude=/etc/fstab";
|
||||||
|
}
|
||||||
|
|
||||||
args << "--exclude-from" << m_excludeUserFile;
|
args << "--exclude-from" << m_excludeUserFile;
|
||||||
args << "--files-from" << m_userFile;
|
args << "--files-from" << m_userFile;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue