Bug 25256 - can't skip firewall config
Summary: can't skip firewall config
Keywords:
Status: CLOSED DUPLICATE of bug 25255
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: anaconda
Version: 7.1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Michael Fulbright
QA Contact: Brock Organ
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2001-01-30 03:04 UTC by Jeremy Katz
Modified: 2007-04-18 16:30 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2001-01-30 03:04:57 UTC
Embargoed:


Attachments (Terms of Use)

Description Jeremy Katz 2001-01-30 03:04:52 UTC
If you create an install class which sets up some firewall rules, you can't
then skip the firewall config screen for the gui install because getNext()
doesn't do a sanity check for if it's values have been set.  Not a problem
with gui or kickstart.  Following patch fixes gui

--- anaconda/iw/firewall_gui.py~	Wed Jan 24 02:40:23 2001
+++ anaconda/anaconda/iw/firewall_gui.py	Mon Jan 29 20:09:12 2001
@@ -20,6 +20,9 @@
 #
	dev.set (("onboot", "yes"))

     def getNext (self):
+
if not self.__dict__.has_key("radio3"):
+
	return None
+
 #        print self.ports.get_text ()

         if self.radio3.get_active ():

Comment 1 Jeremy Katz 2001-01-30 03:06:43 UTC
errr... not sure what happened there

*** This bug has been marked as a duplicate of 25255 ***


Note You need to log in before you can comment on or make changes to this bug.