summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-17 22:39:26 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:27 -0500
commit8d636e503aec3faae9597841a22bac8d9c6a407b (patch)
tree911e086eca6bbd4c4c731b1488b9d32863b0ee6f
parenta667d3972cea048d7890ef894bf3f95ee9fe4dbb (diff)
downloadanaconda-8d636e503aec3faae9597841a22bac8d9c6a407b.tar.gz
anaconda-8d636e503aec3faae9597841a22bac8d9c6a407b.tar.xz
anaconda-8d636e503aec3faae9597841a22bac8d9c6a407b.zip
Install classes may no longer force text mode.
We don't really like promoting text mode anymore. It's basically as close to being deprecated as we can get away with. Therefore, don't provide another way to get to it.
-rwxr-xr-xanaconda5
-rw-r--r--installclass.py3
2 files changed, 0 insertions, 8 deletions
diff --git a/anaconda b/anaconda
index 5b0280aad..4b94a7655 100755
--- a/anaconda
+++ b/anaconda
@@ -861,11 +861,6 @@ if __name__ == "__main__":
checkMemory(opts)
- # this lets install classes force text mode instlls
- if instClass.forceTextMode:
- stdoutLog.info(_("Install class forcing text mode installation"))
- opts.display_mode = 't'
-
#
# find out what video hardware is available to run installer
#
diff --git a/installclass.py b/installclass.py
index 9978d805c..e07f9758d 100644
--- a/installclass.py
+++ b/installclass.py
@@ -66,9 +66,6 @@ class BaseInstallClass(object):
# don't select this class by default
default = 0
- # don't force text mode
- forceTextMode = 0
-
# by default, place this under the "install" category; it gets it's
# own toplevel category otherwise
parentClass = ( _("Install on System"), "install.png" )