File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ def create_configuration_file(args):
49
49
config .write ("DISK=sda1\n " )
50
50
config .write ("KERNEL_BOOTSTRAP=False\n " )
51
51
config .write (f"BUILD_KERNELS={ args .update_checksums or args .build_kernels } \n " )
52
+ config .write (f"CONFIGURATOR={ args .configurator } \n " )
52
53
53
54
# pylint: disable=too-many-statements,too-many-branches
54
55
def main ():
@@ -90,6 +91,9 @@ def main():
90
91
parser .add_argument ("-i" , "--interactive" ,
91
92
help = "Use interactive prompts to resolve issues during bootstrap" ,
92
93
action = "store_true" )
94
+ parser .add_argument ("--configurator" ,
95
+ help = "Run the interactive configurator" ,
96
+ action = "store_true" )
93
97
parser .add_argument ("-r" , "--repo" ,
94
98
help = "Path to prebuilt binary packages" , nargs = None )
95
99
parser .add_argument ("--early-preseed" ,
You can’t perform that action at this time.
0 commit comments