From 98076bec959c9032f3ce8c53deb6cf95a9be6cc5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 21 Oct 2023 09:29:47 +0300 Subject: feat: add a message to say what to after an installation Signed-off-by: Lars Wirzenius Sponsored-by: author --- v-i | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/v-i b/v-i index 4430918..50a26f3 100755 --- a/v-i +++ b/v-i @@ -13,6 +13,12 @@ import time import yaml +OK_MESSAGE = """ +Installation was successful. You can boot into the installed system now. +Remove the installer USB drive after the system has booted. +""" + + verbose = False @@ -595,5 +601,7 @@ def main(): timings.report() + print(OK_MESSAGE) + main() -- cgit v1.2.1