Linux version 4.14

The functionality of the updated amnezia-awg container in Debian 9 with Linux kernel version 4.14 and newer has been tested.
This commit is contained in:
lunardunno 2025-04-04 14:29:31 +04:00 committed by GitHub
parent 52216043bb
commit 39ab6dca1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -414,7 +414,7 @@ ErrorCode ServerController::installDockerWorker(const ServerCredentials &credent
int major = match.captured(1).toInt(); int major = match.captured(1).toInt();
int minor = match.captured(2).toInt(); int minor = match.captured(2).toInt();
if (major < 4 || (major == 4 && minor <= 1)) { if (major < 4 || (major == 4 && minor < 14)) {
return ErrorCode::ServerLinuxKernelTooOld; return ErrorCode::ServerLinuxKernelTooOld;
} }
} }