summaryrefslogtreecommitdiff
path: root/v-i
diff options
context:
space:
mode:
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()