From 5dd644fd58bc16fb89b4de9c36d44af44f2fb050 Mon Sep 17 00:00:00 2001 From: lunardunno <126363523+lunardunno@users.noreply.github.com> Date: Mon, 7 Apr 2025 05:08:15 +0400 Subject: [PATCH] Added handling to serverController Added "Docker is not supported" handling to serverController --- client/core/controllers/serverController.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/core/controllers/serverController.cpp b/client/core/controllers/serverController.cpp index d8c94f4d..6d400260 100644 --- a/client/core/controllers/serverController.cpp +++ b/client/core/controllers/serverController.cpp @@ -409,6 +409,8 @@ ErrorCode ServerController::installDockerWorker(const ServerCredentials &credent qDebug().noquote() << "ServerController::installDockerWorker" << stdOut; if (stdOut.contains("lock")) return ErrorCode::ServerPacketManagerError; + if (stdOut.contains("Docker is not supported")) + return ErrorCode::ServerDockerNotSupported; if (stdOut.contains("command not found")) return ErrorCode::ServerDockerFailedError;