summaryrefslogtreecommitdiffstats
path: root/perl-install/network.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-04-13 09:21:42 +0000
committerdamien <damien@mandriva.com>2001-04-13 09:21:42 +0000
commit5fc632de6b56e66c0ee667a274daf31d8c29d6b2 (patch)
treedde1ca79dd9d78794f1f772e857278c79421d491 /perl-install/network.pm
parent4c104ee957bcc7506b75401afe3085ba7cb97c6a (diff)
downloaddrakx-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar
drakx-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.gz
drakx-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.bz2
drakx-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.xz
drakx-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.zip
updated wireless configuration
Diffstat (limited to 'perl-install/network.pm')
-rw-r--r--perl-install/network.pm17
1 files changed, 16 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm
index 174692d4d..779e6a7e5 100644
--- a/perl-install/network.pm
+++ b/perl-install/network.pm
@@ -298,7 +298,22 @@ sub configureNetworkIntf {
my ($netc, $in, $intf, $net_device, $skip, $module) = @_;
my $text;
my @wireless_modules = ("airo_cs", "netwave_cs", "ray_cs", "wavelan_cs", "wvlan_cs");
- member($module, @wireless_modules) and $intf->{wireless_eth}=1 and $netc->{wireless_eth}=1;
+ if (member($module, @wireless_modules)) {
+ $intf->{wireless_eth} = 1;
+ $netc->{wireless_eth} = 1;
+ $intf->{WIRELESS_MODE} = "Managed";
+ $intf->{WIRELESS_ESSID} = "any";
+#- $intf->{WIRELESS_NWID} = "";
+#- $intf->{WIRELESS_FREQ} = "";
+#- $intf->{WIRELESS_SENS} = "";
+#- $intf->{WIRELESS_RATE} = "";
+#- $intf->{WIRELESS_ENC_KEY} = "";
+#- $intf->{WIRELESS_RTS} = "";
+#- $intf->{WIRELESS_FRAG} = "";
+#- $intf->{WIRELESS_IWCONFIG} = "";
+#- $intf->{WIRELESS_IWSPY} = "";
+#- $intf->{WIRELESS_IWPRIV} = "";
+ }
if ($net_device eq $intf->{DEVICE}) {
$skip and return 1;
$text = _("WARNING: This device has been previously configured to connect to the Internet.