Fix architecture typo blocking scheduled_tasks on 32-bit images

The kernel requirement listed "Intel33". Intel layers only ever report
Intel32 or Intel64, so on a 32-bit image the requirement could never be
satisfied and the plugin aborted with a misleading "Unsatisfied
requirement ... kernel.layer_name" instead of running.
This commit is contained in:
mmadersbacher
2026-08-18 19:29:19 +02:00
parent 958be9bcd9
commit 17707cb576
@@ -1119,7 +1119,7 @@ class ScheduledTasks(interfaces.plugins.PluginInterface, timeliner.TimeLinerInte
requirements.ModuleRequirement(
name="kernel",
description="Windows kernel",
architectures=["Intel33", "Intel64"],
architectures=["Intel32", "Intel64"],
),
requirements.VersionRequirement(
name="hivelist", component=hivelist.HiveList, version=(2, 0, 0)