Prelim: Add reboot step

This commit is contained in:
Rory Fewell
2025-07-07 23:13:10 +01:00
parent 7138498200
commit 121ad446d5

View File

@@ -447,4 +447,10 @@ def wsetup_step_prepare_chain_to_gui(stdscr):
raise Exception("Failed to chain graphical phase");
# FIXME: Should show reboot screen
subprocess.run(
[ "reboot", "now" ],
capture_output=True,
check=True
)
return 0