diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/network/netconnect.pm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/network/netconnect.pm b/lib/network/netconnect.pm index 55dbec8..8f50630 100644 --- a/lib/network/netconnect.pm +++ b/lib/network/netconnect.pm @@ -314,13 +314,12 @@ If you do not know it, keep the preselected protocol.") }, #- or start interface synchronously if (!$::isInstall) { services::start('network-up'); - } else { - my $timeout = $connection->get_up_timeout; - while ($timeout--) { - my $status = $connection->get_status; - last if $status; - sleep 1; - } + } + my $timeout = $connection->get_up_timeout; + while ($timeout--) { + my $status = $connection->get_status; + last if $status; + sleep 1; } $success = $connection->get_status; # try to resolve the network address for some time |