summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-09-29 20:16:56 +0000
committerJeremy Katz <katzj@redhat.com>2003-09-29 20:16:56 +0000
commitaef918729a2d04e6f1ea149d281ba539079c34b6 (patch)
treeb90e60bd33f14bc38af16f974de93f05b9e0244a /iw
parent989201e9c3f1ba3631835cac7c3a4cd255580c95 (diff)
downloadanaconda-aef918729a2d04e6f1ea149d281ba539079c34b6.tar.gz
anaconda-aef918729a2d04e6f1ea149d281ba539079c34b6.tar.xz
anaconda-aef918729a2d04e6f1ea149d281ba539079c34b6.zip
fix disabling firewall (#105048)
Diffstat (limited to 'iw')
-rw-r--r--iw/firewall_gui.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/iw/firewall_gui.py b/iw/firewall_gui.py
index c32cac4b6..2a104acad 100644
--- a/iw/firewall_gui.py
+++ b/iw/firewall_gui.py
@@ -28,8 +28,6 @@ class FirewallWindow (InstallWindow):
def getNext (self):
if self.disabled_radio.get_active ():
- self.firewall.enabled = 0
-
rc2 = self.intf.messageWindow(_("Warning - No Firewall"),
_("If this system is attached directly to the Internet or "
"is on a large public network, it is recommended that a "
@@ -43,7 +41,7 @@ class FirewallWindow (InstallWindow):
if rc2 == 0:
raise gui.StayOnScreen
else:
- self.firewall.enabled = 1
+ self.firewall.enabled = 0
count = 0
self.firewall.trustdevs = []