summaryrefslogtreecommitdiffstats
path: root/iw/firewall_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-09-22 17:02:34 +0000
committerMike Fulbright <msf@redhat.com>2003-09-22 17:02:34 +0000
commit193519b2cb055f22818008514cbd1052d2d49e92 (patch)
treefeaa533808728b13c7ea25429f2b25392ab87d94 /iw/firewall_gui.py
parent09816349f90113f7115c872c0315d8c8d0af578d (diff)
downloadanaconda-193519b2cb055f22818008514cbd1052d2d49e92.tar.gz
anaconda-193519b2cb055f22818008514cbd1052d2d49e92.tar.xz
anaconda-193519b2cb055f22818008514cbd1052d2d49e92.zip
fixup firewall missing warningafter-taroon-merge
Diffstat (limited to 'iw/firewall_gui.py')
-rw-r--r--iw/firewall_gui.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/iw/firewall_gui.py b/iw/firewall_gui.py
index 91b4a65b4..c32cac4b6 100644
--- a/iw/firewall_gui.py
+++ b/iw/firewall_gui.py
@@ -31,13 +31,19 @@ class FirewallWindow (InstallWindow):
self.firewall.enabled = 0
rc2 = self.intf.messageWindow(_("Warning - No Firewall"),
- _("You have elected to disable the firewall on this system. This is not recomended if this system is attached directly to the Internet or is on a large public network. A firewall will help prevent unauthorized access to your system.\n\nAre you sure you want to turn off the firewall?"),
- type="custom", custom_icon="warning",
- custom_buttons=[_("_Back"), _("_Proceed")])
+ _("If this system is attached directly to the Internet or "
+ "is on a large public network, it is recommended that a "
+ "firewall be configured to help prevent unauthorized "
+ "access. However, you have selected not to "
+ "configure a firewall. Choose \"Proceed\" to continue "
+ "without a firewall."),
+ type="custom", custom_icon="warning",
+ custom_buttons=[_("_Configure Firewall"), _("_Proceed")])
+
if rc2 == 0:
raise gui.StayOnScreen
- else:
- self.firewall.enabled = 1
+ else:
+ self.firewall.enabled = 1
count = 0
self.firewall.trustdevs = []