summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-09-15 13:47:16 -0400
committerChris Lumens <clumens@redhat.com>2009-09-22 16:37:07 -0400
commit6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096 (patch)
tree6cbcb918fce43769c6b635bf2af98446845a55fc /gui.py
parent45bb27f111d21efb547e42486961b1de4fb98541 (diff)
downloadanaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.gz
anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.xz
anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.zip
Remove the installation number screen.
Whatever form the new entitlement system takes, it is unlikely it will look like what we've currently got. It's probably better to start over fresh than attempt to adapt what we've got into supporting the new system. This will also allow testing of the RHEL6 tree with the right product name without requiring testers to enter a key.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/gui.py b/gui.py
index f4e2bb20b..6eab12b3b 100755
--- a/gui.py
+++ b/gui.py
@@ -1097,16 +1097,6 @@ class InstallInterface:
custom_buttons=[_("_Exit installer")]).getrc()
return rc
- def getInstallKey(self, key = ""):
- d = InstallKeyWindow(self.anaconda, key)
- rc = d.run()
- if rc in [gtk.RESPONSE_CANCEL, gtk.RESPONSE_DELETE_EVENT]:
- ret = None
- else:
- ret = d.get_key()
- d.destroy()
- return ret
-
def getLuksPassphrase(self, passphrase = "", preexist = False):
if self.icw:
parent = self.icw.window