From e075e8902ba9d273f01ad0d2f88c48d4517307d9 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 29 Jan 2026 11:29:54 +0100 Subject: [PATCH] jw.pkg.cmds.CmdDistro: Default --interactive to true Better safe than sorry: If things are to happen unattendedly, enforce the need to explicitly request that. Signed-off-by: Jan Lindemann --- src/python/jw/pkg/cmds/CmdDistro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/jw/pkg/cmds/CmdDistro.py b/src/python/jw/pkg/cmds/CmdDistro.py index fcbf2ca0..678fb4f9 100644 --- a/src/python/jw/pkg/cmds/CmdDistro.py +++ b/src/python/jw/pkg/cmds/CmdDistro.py @@ -31,7 +31,7 @@ class CmdDistro(CmdBase): # export def add_arguments(self, p: ArgumentParser) -> None: super().add_arguments(p) p.add_argument('--id', default=None, help='Distribution ID (default is taken from /etc/os-release)') - p.add_argument('--interactive', choices=['true', 'false', 'auto'], default='false', help="Wait for user input or try to proceed unattended") + p.add_argument('--interactive', choices=['true', 'false', 'auto'], default='true', help="Wait for user input or try to proceed unattended") @property def interactive(self) -> bool: