summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-10-21 06:30:31 +0000
committerLars Wirzenius <liw@liw.fi>2023-10-21 06:30:31 +0000
commitdd8430b14a39e1dc030053a39815e2d77c6e6f63 (patch)
tree3bded8447fa31eea3e5e870c56938ba7c6c04043
parentef57300c04f63251a8440f8c85c8805944a2130c (diff)
parent98076bec959c9032f3ce8c53deb6cf95a9be6cc5 (diff)
downloadv-i-dd8430b14a39e1dc030053a39815e2d77c6e6f63.tar.gz
Merge branch 'liw/what-now' into 'main'
feat: add a message to say what to after an installation See merge request larswirzenius/v-i!59
-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()