From: Michael Tremer Date: Thu, 13 Mar 2025 10:13:46 +0000 (+0000) Subject: fireinfo: Accept profiles with bogomips X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0514b75e8062be8d95de714cbda47a6e800524a;p=ipfire.org.git fireinfo: Accept profiles with bogomips We should not really have anyone send this any more, but there seem to be many really outdated machines out there that are spamming my logs. Signed-off-by: Michael Tremer --- diff --git a/src/backend/fireinfo.py b/src/backend/fireinfo.py index 702739bd..c2c603de 100644 --- a/src/backend/fireinfo.py +++ b/src/backend/fireinfo.py @@ -99,6 +99,9 @@ PROFILE_SCHEMA = { "type" : "string", "pattern" : r"^[a-z0-9\_]{,8}$", }, + "bogomips" : { + "type" : "number", + }, "count" : { "type" : "integer", },