diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/network/netconnect.pm | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- connection manager: + o check if the network is really working during the connection test + (#48887 #48169 #45965). - drakfirewall: o added support for bacula, dhcp, syslog, mysql and postgresql servers. o updated associations between ports and packages. diff --git a/lib/network/netconnect.pm b/lib/network/netconnect.pm index bede73e..74ca21d 100644 --- a/lib/network/netconnect.pm +++ b/lib/network/netconnect.pm @@ -311,6 +311,8 @@ If you do not know it, keep the preselected protocol.") }, #- FIXME: should use network::test for ppp (after future merge with network::connection) #- or start interface synchronously services::start('network-up') unless $::isInstall; + my $up = network::tools::connected(); + $success = $up; } "end"; #- handle disconnection in install? }, |