From 3c78551b24bd1c88a9bd313f2b0f18c4a200c1e6 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 9 Jul 2026 20:07:16 +0900 Subject: [PATCH] cmd/mbf: expose target load average There are often good reason to override this. Signed-off-by: Ophestra --- cmd/mbf/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index f3ca4eba..686779d8 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -210,6 +210,10 @@ func main() { &cm.attr.Jobs, "jobs", command.IntFlag(0), "Preferred number of jobs to run, when applicable", + ).Flag( + &cm.attr.Load, + "load-average", command.IntFlag(0), + "Preferred load average number, when applicable", ).Flag( &cm.base, "d", command.StringFlag("$MBF_CACHE_DIR"),