diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/network/connection_manager.pm | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,4 @@ +- drakroam: fix a crash (mga#6847) - use chroot's /etc/resolv.conf if stage1 didn't write any (Derek Jennings, mga#5772) - wait for network to show up the same way as in the installer diff --git a/lib/network/connection_manager.pm b/lib/network/connection_manager.pm index 535e278..e3f91bd 100644 --- a/lib/network/connection_manager.pm +++ b/lib/network/connection_manager.pm @@ -125,6 +125,7 @@ sub write_settings { sub configure_connection { my ($cmanager) = @_; + return if !ref($cmanager->{connection}); if (!$cmanager->check_setup) { $cmanager->setup_connection or return; |