summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2012-07-18 13:28:29 -0400
committerWill Woods <wwoods@redhat.com>2012-08-02 16:43:58 -0400
commit2772f36a5d1d2d05d314640d77d4b647c68823c9 (patch)
tree441d47f07da09da2c46c2d5c6512978b7b89f05e
parent166a9ca1246e6c0b094c2055c29d4a0304f19abb (diff)
downloadanaconda-2772f36a5d1d2d05d314640d77d4b647c68823c9.tar.gz
anaconda-2772f36a5d1d2d05d314640d77d4b647c68823c9.tar.xz
anaconda-2772f36a5d1d2d05d314640d77d4b647c68823c9.zip
Add "Starting installer..." messages
Print a couple of messages as anaconda starts up so the user isn't confused about what's happening after the screen goes dark.
-rwxr-xr-xanaconda9
1 files changed, 9 insertions, 0 deletions
diff --git a/anaconda b/anaconda
index fc679c927..d6650a9c2 100755
--- a/anaconda
+++ b/anaconda
@@ -646,6 +646,8 @@ def prompt_for_ssh():
if __name__ == "__main__":
+ print "Starting installer, one moment..."
+
setupPythonPath()
# Allow a file to be loaded as early as possible
@@ -708,6 +710,13 @@ if __name__ == "__main__":
from pyanaconda import vnc
from pyanaconda import kickstart
+ verdesc = "%s for %s %s" % (getAnacondaVersion(),
+ product.productName, product.productVersion)
+ if product.isFinal:
+ print "anaconda %s started."
+ else:
+ print "anaconda %s (pre-release) started."
+
# to set UTF8 mode on the terminal, we need LANG to be set usefully
if os.environ.get("LANG", "C") == "C":
os.environ['LANG'] = DEFAULT_LANG