diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-09-19 15:55:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-09-19 15:55:39 +0000 |
commit | d59b47aea0e5e97536e0cc0d8663ba27bbf8f185 (patch) | |
tree | cb487267ac7d89833c777067039f011b7e2e2e86 /perl-install/install_steps_interactive.pm | |
parent | f437e5f69a3fc892a6db36e0b9e9d876b1897a45 (diff) | |
download | drakx-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar drakx-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.gz drakx-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.bz2 drakx-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.xz drakx-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d642d9383..1955a96dd 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -175,18 +175,18 @@ sub configureNetwork($) { my $intf = network::findIntf($o->{intf} ||= [], $_); add2hash($intf, $last); add2hash($intf, { NETMASK => '255.255.255.0' }); - $o->configureNetworkIntf($intf); + $o->configureNetworkIntf($intf) or return; $o->{netc} ||= {}; delete $o->{netc}{dnsServer}; delete $o->{netc}{GATEWAY}; $last = $intf; } - # { - # my $wait = $o->wait_message(_("Hostname"), _("Determining host name and domain...")); - # network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf}); - # } - $o->configureNetworkNet($o->{netc}, $last ||= {}, @l); + #- { + #- my $wait = $o->wait_message(_("Hostname"), _("Determining host name and domain...")); + #- network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf}); + #- } + $o->configureNetworkNet($o->{netc}, $last ||= {}, @l) or return; } install_steps::configureNetwork($o); } |