[PATCH] initial implementation

Martin Kolman mkolman at redhat.com
Thu Nov 13 18:45:33 UTC 2014


Signed-off-by: Martin Kolman <mkolman at redhat.com>
---
 anaconda | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/anaconda b/anaconda
index a3f527c..9c60951 100755
--- a/anaconda
+++ b/anaconda
@@ -988,11 +988,23 @@ if __name__ == "__main__":
 
     verdesc = "%s for %s %s" % (getAnacondaVersionString(),
                                 product.productName, product.productVersion)
+
+    logs_note = " * installation log files are stored in /tmp during the installation"
+    shell_note = " * shell is available on TTY2 and in second TMUX pane (ctr+b, then press 2)"
+    text_note = " * if the graphical installation interface fails to start, try again with the\n\
+   inst.text bootoption to start text installation"
+    logs_note = " * when reporting a bug attach logs as separate text/plain attachments"
+
     if product.isFinal:
         print("anaconda %s started." % verdesc)
     else:
         print("anaconda %s (pre-release) started." % verdesc)
 
+    if not opts.images and not opts.dirinstall:
+        print(shell_note)
+        print(text_note)
+        print(logs_note)
+
     from pyanaconda.anaconda import Anaconda
     anaconda = Anaconda()
     iutil.setup_translations(gettext)
-- 
1.9.3



More information about the anaconda-patches mailing list