diff options
author | damien <damien@mandriva.com> | 2001-02-14 08:52:12 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-02-14 08:52:12 +0000 |
commit | 8e3ba0f533b6169fd5923256e8db1096335be3b3 (patch) | |
tree | e6e951970810906d8c3907312a47a6533ad97b12 /perl-install | |
parent | 359bcc44e6d112da6f60a2ece856548b92202035 (diff) | |
download | drakx-8e3ba0f533b6169fd5923256e8db1096335be3b3.tar drakx-8e3ba0f533b6169fd5923256e8db1096335be3b3.tar.gz drakx-8e3ba0f533b6169fd5923256e8db1096335be3b3.tar.bz2 drakx-8e3ba0f533b6169fd5923256e8db1096335be3b3.tar.xz drakx-8e3ba0f533b6169fd5923256e8db1096335be3b3.zip |
updated wireless eth support
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm index d90b6597a..e78edf342 100644 --- a/perl-install/network.pm +++ b/perl-install/network.pm @@ -121,7 +121,7 @@ sub write_interface_conf { NETWORK => join('.', mapn { int $_[0] & $_[1] } \@ip, \@mask), ONBOOT => bool2yesno(!member($intf->{DEVICE}, map { $_->{device} } detect_devices::probeall())), }); - setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT)); + setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT), $netc->{wireless_eth} ? qw(WIRELESS_MODE WIRELESS_ESSID WIRELESS_NWID WIRELESS_FREQ WIRELESS_SENS WIRELESS_RATE WIRELESS_ENC_KEY WIRELESS_RTS WIRELESS_FRAG WIRELESS_IWCONFIG WIRELESS_IWSPY WIRELESS_IWPRIV) : ()); } sub add2hosts { |