summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-03-23 20:09:05 +0000
committerMatt Wilson <msw@redhat.com>2001-03-23 20:09:05 +0000
commitba00558af846d045ca6f2d32e20eb260d888d9a4 (patch)
tree0951031d60da14e467286f2547f89badf9855d56 /anaconda
parent039a528affbfd3e4ae498cf91a6a77da8fe710d5 (diff)
downloadanaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.tar.gz
anaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.tar.xz
anaconda-ba00558af846d045ca6f2d32e20eb260d888d9a4.zip
check in those messages we talked about
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda3
1 files changed, 3 insertions, 0 deletions
diff --git a/anaconda b/anaconda
index 3828b0be6..dc84a7cc0 100755
--- a/anaconda
+++ b/anaconda
@@ -247,6 +247,7 @@ iutil.setMemoryOverhead(overhead)
#
if (not test):
if (iutil.memInstalled() < isys.MIN_GUI_RAM):
+ print _("You do not have enough RAM to use the graphical installer. Starting text mode.")
forced_display_mode = 't'
if iutil.memInstalled() < isys.MIN_RAM:
@@ -425,9 +426,11 @@ if not reconfigOnly:
from image import NfsInstallMethod
method = NfsInstallMethod(method[5:])
elif (method[0:6] == "ftp://" or method[0:7] == "http://"):
+ print _("Graphical installation not available for %s installs. Starting text mode.") % (string.split(method, ':')[0],)
from urlinstall import UrlInstallMethod
method = UrlInstallMethod(method)
elif (method[0:5] == "hd://"):
+ print _("Graphical installation not available for hard drive installs. Starting text mode.") % (string.split(method, ':')[0],)
method = method[5:]
i = string.index(method, ":")