summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-09-19 15:55:39 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-09-19 15:55:39 +0000
commitd59b47aea0e5e97536e0cc0d8663ba27bbf8f185 (patch)
treecb487267ac7d89833c777067039f011b7e2e2e86 /perl-install/install_steps_interactive.pm
parentf437e5f69a3fc892a6db36e0b9e9d876b1897a45 (diff)
downloaddrakx-backup-do-not-use-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar
drakx-backup-do-not-use-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.gz
drakx-backup-do-not-use-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.bz2
drakx-backup-do-not-use-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.tar.xz
drakx-backup-do-not-use-d59b47aea0e5e97536e0cc0d8663ba27bbf8f185.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm12
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);
}