diff options
author | Mike Fulbright <msf@redhat.com> | 2003-09-22 17:02:34 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-09-22 17:02:34 +0000 |
commit | 193519b2cb055f22818008514cbd1052d2d49e92 (patch) | |
tree | feaa533808728b13c7ea25429f2b25392ab87d94 /iw/firewall_gui.py | |
parent | 09816349f90113f7115c872c0315d8c8d0af578d (diff) | |
download | anaconda-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.py | 16 |
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 = [] |