summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-08-27 22:33:16 +0000
committerdamien <damien@mandriva.com>2001-08-27 22:33:16 +0000
commit3748f5a4718f6ec99328ccea1ff161ac191c1f35 (patch)
treee3d926fc8554ad9a2b0668294e454acbc883ece2 /perl-install/network/netconnect.pm
parentef63e3c19166bb5e05d8dc47ff492910da0578b5 (diff)
downloaddrakx-backup-do-not-use-3748f5a4718f6ec99328ccea1ff161ac191c1f35.tar
drakx-backup-do-not-use-3748f5a4718f6ec99328ccea1ff161ac191c1f35.tar.gz
drakx-backup-do-not-use-3748f5a4718f6ec99328ccea1ff161ac191c1f35.tar.bz2
drakx-backup-do-not-use-3748f5a4718f6ec99328ccea1ff161ac191c1f35.tar.xz
drakx-backup-do-not-use-3748f5a4718f6ec99328ccea1ff161ac191c1f35.zip
corrected hwaddr setting and draknet first window display
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index e1d50f2e9..46baaf763 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -181,7 +181,13 @@ ifdown eth0
);
my $i=0;
map { defined $set_default or do { $_->[1] and $set_default=$i; }; $i++; } @l;
- @l = map { $_->[0] = $_->[0] . if_($_->[1], " - " . _ ($_->[2], $_->[1])) } @l;
+ @l = (
+[_("Normal modem connection") . if_($netc->{autodetect}{modem}, " - " . _("detected on port %s", $netc->{autodetect}{modem})), \$conf{modem}],
+[_("ISDN connection") . if_($netc->{autodetect}{isdn}{description}, " - " . _("detected %s", $netc->{autodetect}{isdn}{description})), \$conf{isdn}],
+[_("ADSL connection") . if_($netc->{autodetect}{adsl}, " - " . _("detected on interface %s", $netc->{autodetect}{adsl})), \$conf{adsl}],
+[_("Cable connection") . if_($netc->{autodetect}{cable}, " - " . _("cable connection detected")), \$conf{cable}],
+[_("LAN connection") . if_($netc->{autodetect}{lan}, " - " . _("ethernet card(s) detected")), \$conf{lan}]
+);
my $e = $in->ask_from(_("Network Configuration Wizard"), _("Choose the connection you want to configure"),
[ map { { label => $_->[0], val => $_->[1], type => 'bool'} } @l ]
) or goto step_1;