diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-16 23:04:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-16 23:04:08 +0000 |
commit | f8492deab0a4ffe75fe9037c51b29760738b8a73 (patch) | |
tree | 365c1891eacb2009dc35f085205dd8dcf34c0030 /perl-install | |
parent | cac4d4b3bc72fb8e07bea3ad67f9ff3086af0c3e (diff) | |
download | drakx-f8492deab0a4ffe75fe9037c51b29760738b8a73.tar drakx-f8492deab0a4ffe75fe9037c51b29760738b8a73.tar.gz drakx-f8492deab0a4ffe75fe9037c51b29760738b8a73.tar.bz2 drakx-f8492deab0a4ffe75fe9037c51b29760738b8a73.tar.xz drakx-f8492deab0a4ffe75fe9037c51b29760738b8a73.zip |
use wizard layer 's yesorno type
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index aa1ebe786..82ff86d10 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -85,8 +85,6 @@ sub detect_timezone() { my $ethntf = {}; use Data::Dumper; - my %yesno = (yes => N("Yes"), no => N("No")); - my %wireless_mode = (N("Ad-hoc") => "Ad-hoc", N("Managed") => "Managed", N("Master") => "Master", @@ -779,15 +777,21 @@ You may also enter the IP address of the gateway if you have one."), apply_settings => { name => N("Configuration is complete, do you want to apply settings ?"), - data => [], # FIXME: yesorno + type => "yesorno", next => "network_on_boot", }, network_on_boot => { pre => sub { - member($netc->{internet_cnx_choice}, ('adsl', 'isdn')) and $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?")); - + # condition is : + member($netc->{internet_cnx_choice}, ('adsl', 'isdn')); # and $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?")); + }, + name => N("Do you want to start the connection at boot?"), + type => "yesorno", + post => sub { + my ($res) = @_; + $netc->{at_boot} = $res; if ($netc->{internet_cnx_choice}) { write_cnx_script($netc); $netcnx->{type} = $netc->{internet_cnx}{$netc->{internet_cnx_choice}}{type}; @@ -799,9 +803,8 @@ You may also enter the IP address of the gateway if you have one."), network::network::configureNetwork2($in, $::prefix, $netc, $intf); $network_configured = 1; + $::isInstall ? "restart" : "ask_connect_now"; }, - name => N("Do you want to start the connection at boot?"), - data => [], # FIXME yes/no }, restart => @@ -824,7 +827,7 @@ You may also enter the IP address of the gateway if you have one."), { no_back => 1, name => N("Do you want to try to connect to the Internet now?"), - data => [], # FIXME: yes/no + type => "yesorno", post => sub { my ($a) = @_; my ($type) = $netc->{internet_cnx_choice}; |