summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_steps_interactive.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 740fd4818..564fa9001 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -846,10 +846,7 @@ sub summaryBefore {
#- get back network configuration.
require network;
eval {
- network::network::read_all_conf($o->{prefix}, $o->{netc} ||= {}, $o->{intf} ||= {});
- #- ugly hack to determine network type (avoid saying not configured in summary).
- $o->{intf}{eth0} and $o->{netcnx}{type} ||= 'lan';
- $o->{intf}{ppp0} and $o->{netcnx}{type} ||= 'modem';
+ network::network::read_all_conf($o->{prefix}, $o->{netc} ||= {}, $o->{intf} ||= {}, $o->{netcnx} ||= {});
};
log::l("summaryBefore: network configuration: ", formatError($@));
}