summaryrefslogtreecommitdiff
path: root/v-i
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-10-21 09:29:47 +0300
committerLars Wirzenius <liw@liw.fi>2023-10-21 09:29:47 +0300
commit98076bec959c9032f3ce8c53deb6cf95a9be6cc5 (patch)
tree3bded8447fa31eea3e5e870c56938ba7c6c04043 /v-i
parentef57300c04f63251a8440f8c85c8805944a2130c (diff)
downloadv-i-98076bec959c9032f3ce8c53deb6cf95a9be6cc5.tar.gz
feat: add a message to say what to after an installation
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
Diffstat (limited to 'v-i')
-rwxr-xr-xv-i8
1 files changed, 8 insertions, 0 deletions
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()