From 8949540fd579fc43465ac7ce973a9fb6b91a3ac5 Mon Sep 17 00:00:00 2001 From: phg Date: Fri, 6 Feb 2026 08:45:41 +0100 Subject: [PATCH] Add LUKS wait seconds flag to build-luks task --- mise.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 964cfff..fddb401 100644 --- a/mise.toml +++ b/mise.toml @@ -30,9 +30,10 @@ mise run lint ${usage_dir?} [tasks.build-luks] usage = ''' arg "" help="Directory containing the Packer template to build e.g. debian/13-trixie" +flag "--luks-wait-seconds " help="Seconds to wait for the LUKS password prompt after installation before sending the password" default="45" ''' run = ''' -_scripts/unlock-luks-after-install.py -t ${usage_dir?} +_scripts/unlock-luks-after-install.py -t ${usage_dir?} --luks-wait-seconds ${usage_luks_wait_seconds?} ''' [tasks.init]