安全优化

This commit is contained in:
zhaominyong 2022-04-02 16:41:27 +08:00
parent 7c3894a625
commit bd5900ae5a
3 changed files with 7 additions and 7 deletions

View File

@ -500,8 +500,8 @@ void MyBackupManager::setKysecStatus(bool status)
// 安全保护已开启
m_bOpenKysec = true;
Utils::setKysecStatus(false);
// 停止安全防护
QProcess::execute("systemctl stop kysec-init.service");
// 开启安全防护
// QProcess::execute("systemctl start kysec-init.service");
} else {
m_bOpenKysec = false;
}
@ -510,7 +510,7 @@ void MyBackupManager::setKysecStatus(bool status)
m_bStartKysecDeamon = true;
Utils::setKysecDaemon(false);
// 停止安全防护
QProcess::execute("systemctl stop kysec-init.service");
// QProcess::execute("systemctl stop kysec-init.service");
} else {
m_bStartKysecDeamon = false;
}

View File

@ -319,8 +319,8 @@ QStringList SystemRestoreProxy::getRsyncArgs(SystemRestoreScene scene)
*/
void SystemRestoreProxy::restoreSystem()
{
// 停止安全防护, 迁移到业务开始的锁定中去
// QProcess::execute("systemctl stop kysec-init.service");
// 停止安全防护
QProcess::execute("systemctl stop kysec-init.service");
// 本地系统备份没有img挂载故下面两个路径相等
m_srcPath = m_backupPath;

View File

@ -365,8 +365,8 @@ void UDiskSystemRestoreProxy::restoreSystem()
return ;
}
// 停止安全防护, 迁移到业务开始的锁定中去
// QProcess::execute("systemctl stop kysec-init.service");
// 停止安全防护
QProcess::execute("systemctl stop kysec-init.service");
QString destPath = Utils::getSysRootPath();