diff options
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/drakfirewall.pm (renamed from perl-install/network/tinyfirewall.pm) | 4 | ||||
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/network/tinyfirewall.pm b/perl-install/network/drakfirewall.pm index 602c0023f..76d5d76e0 100644 --- a/perl-install/network/tinyfirewall.pm +++ b/perl-install/network/drakfirewall.pm @@ -1,4 +1,4 @@ -package network::tinyfirewall; # $Id$ +package network::drakfirewall; # $Id$ use diagnostics; use strict; @@ -126,7 +126,7 @@ sub get_conf { } elsif (my $shorewall = network::shorewall::read()) { $shorewall->{disabled}, from_ports(\$shorewall->{ports}); } else { - $in->ask_okcancel('', _("tinyfirewall configurator + $in->ask_okcancel('', _("drakfirewall configurator This configures a personal firewall for this Mandrake Linux machine. For a powerful dedicated firewall solution, please look to the diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 7474b9b66..385893763 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -332,8 +332,8 @@ fi save_conf($netcnx, $netc, $intf); if ($::isInstall && $::o->{security} >= 3) { - require network::tinyfirewall; - network::tinyfirewall::main($in, $::o->{security} <= 3); + require network::drakfirewall; + network::drakfirewall::main($in, $::o->{security} <= 3); } #- if ($netc->{NET_DEVICE} and $netc->{NETWORKING} ne 'no' and $::isStandalone and $::expert) { |