停止安全包含优化

This commit is contained in:
zhaominyong 2022-03-11 17:36:17 +08:00
parent ec3e7b8729
commit 7fed05b792
4 changed files with 9 additions and 4 deletions

View File

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

View File

@ -1,5 +1,6 @@
#include "calcbackupsize.h"
#include <QDebug>
#include <QRegularExpression>
CalcBackupSize::CalcBackupSize(QObject* parent) :
QObject(parent),

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

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