Bug 25256

Summary: can't skip firewall config
Product: [Retired] Red Hat Linux Reporter: Jeremy Katz <katzj>
Component: anacondaAssignee: Michael Fulbright <msf>
Status: CLOSED DUPLICATE QA Contact: Brock Organ <borgan>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.1   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-01-30 03:04:57 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

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 ***