From 6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 15 Sep 2009 13:47:16 -0400 Subject: 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. --- gui.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'gui.py') 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 -- cgit