diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-16 23:05:52 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-16 23:05:52 +0000 |
commit | e35e3deadb1e227c85f38632132eef242f5f790c (patch) | |
tree | 442d1cd1e488e020840a5aa3cd77cea9d1b34e06 | |
parent | 815bbee4072296ec88838db653ed443df1ce8d07 (diff) | |
download | drakx-e35e3deadb1e227c85f38632132eef242f5f790c.tar drakx-e35e3deadb1e227c85f38632132eef242f5f790c.tar.gz drakx-e35e3deadb1e227c85f38632132eef242f5f790c.tar.bz2 drakx-e35e3deadb1e227c85f38632132eef242f5f790c.tar.xz drakx-e35e3deadb1e227c85f38632132eef242f5f790c.zip |
split/merge lan config steps according to new specs
(card => protocol => parameters => hostname)
-rw-r--r-- | perl-install/network/netconnect.pm | 86 |
1 files changed, 63 insertions, 23 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 9cf20f6de..5c1ebe5c2 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -92,6 +92,10 @@ sub detect_timezone() { N("Secondary") => "Secondary", N("Auto") => "Auto", ); + my %l10n_lan_protocols = ( + static => N("Manual configuration"), + dhcp => N("Automatic IP (BOOTP/DHCP/Zeroconf)"), + ); init_globals($in, $::prefix); @@ -507,7 +511,7 @@ killall pppd }, - lan_standalone => + lan => { pre => sub { detect($netc->{autodetect}, 'lan') if !$::isInstall; @@ -524,28 +528,54 @@ killall pppd post => sub { delete $ethntf->{$_} foreach keys %$ethntf; add2hash($ethntf, $intf->{$ntf_name}); - return 'lan'; + $net_device = $netc->{NET_DEVICE}; + if ($::isInstall && $net_device eq $ethntf->{DEVICE}) { + return 'lan_alrd_cfg'; + } else { + return 'lan_protocol'; + } + }, + }, + + lan_alrd_cfg => + { + name => N("WARNING: this device has been previously configured to connect to the Internet. +Simply accept to keep this device configured. +Modifying the fields below will override this configuration."), + type => "yesorno", + post => sub { + my ($res) = @_; + die 'wizcancel' if !$res; + return "lan_protocol"; + } + }, + + lan_protocol => + { + pre => sub { + $module ||= (find { $_->[0] eq $ethntf->{DEVICE} } @all_cards)->[1]; + $auto_ip = $l10n_lan_protocols{defined $auto_ip ? ($auto_ip ? 'dhcp' : 'static') :$ethntf->{BOOTPROTO}} || 0; + }, + name => sub { + N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module) . "\n\n" . + N("The following protocols can be used to configure an ethernet connection. Please choose the one you want to use") + }, + data => sub { + [ { val => \$auto_ip, type => "list", list => [ values %l10n_lan_protocols ] } ]; + }, + post => sub { + $auto_ip = $auto_ip eq N("Automatic IP (BOOTP/DHCP/Zeroconf)") || 0; + return 'lan_intf'; }, }, # FIXME: is_install: no return for each card "last step" because of manual popping # better construct an hash of { current_netintf => next_step } which next_step = last_card ? next_eth_step : next_card ? - lan => + lan_intf => { pre => sub { - # FIXME: set $module $net_device = $netc->{NET_DEVICE}; - if ($net_device eq $ethntf->{DEVICE}) { - $text = N("WARNING: this device has been previously configured to connect to the Internet. -Simply accept to keep this device configured. -Modifying the fields below will override this configuration."); - } else { - $text = N("Please enter the IP configuration for this machine. -Each item should be entered as an IP address in dotted-decimal -notation (for example, 1.2.3.4)."); - } - $auto_ip = $ethntf->{BOOTPROTO} !~ /static/; $onboot = $ethntf->{ONBOOT} ? $ethntf->{ONBOOT} =~ /yes/ : bool2yesno(!member($ethntf->{DEVICE}, map { $_->{device} } detect_devices::pcmcia_probe())); $needhostname = $ethntf->{NEEDHOSTNAME} !~ /no/; @@ -555,16 +585,26 @@ notation (for example, 1.2.3.4)."); delete $ethntf->{BROADCAST}; @fields = qw(IPADDR NETMASK); }, - name => sub { N("Configuring network device %s", $ethntf->{DEVICE}) . ($module ? N(" (driver %s)", $module) : '') . "\n\n" . $text }, + name => sub { join('', + N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module), + if_(!$auto_ip, "\n\n" . N("Please enter the IP configuration for this machine. +Each item should be entered as an IP address in dotted-decimal +notation (for example, 1.2.3.4).")), + ) }, data => sub { - [ { label => N("Automatic IP"), val => \$auto_ip, type => "bool", text => N("(bootp/dhcp/zeroconf)") }, - { label => N("IP address"), val => \$ethntf->{IPADDR}, disabled => sub { $auto_ip } }, - { label => N("Netmask"), val => \$ethntf->{NETMASK}, disabled => sub { $auto_ip } }, - { label => N("DHCP host name"), val => \$ethntf->{DHCP_HOSTNAME}, disabled => sub { ! ($auto_ip && $needhostname) }, advanced => 1 }, - { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool", advanced => 1 }, - { text => N("Network Hotplugging"), val => \$hotplug, type => "bool", advanced => 1 }, - { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool", disabled => sub { ! $auto_ip }, advanced => 1 }, - { text => N("Start at boot"), val => \$onboot, type => "bool", advanced => 1 }, + [ $auto_ip ? + ( + { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool", disabled => sub { ! $auto_ip } }, + { label => N("DHCP host name"), val => \$ethntf->{DHCP_HOSTNAME}, disabled => sub { ! ($auto_ip && $needhostname) } }, + ) + : + ( + { label => N("IP address"), val => \$ethntf->{IPADDR}, disabled => sub { $auto_ip } }, + { label => N("Netmask"), val => \$ethntf->{NETMASK}, disabled => sub { $auto_ip } }, + ), + { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool" }, + { text => N("Network Hotplugging"), val => \$hotplug, type => "bool" }, + { text => N("Start at boot"), val => \$onboot, type => "bool" }, ], }, complete => sub { |