diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/network/tools.pm | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- 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 (Derek Jennings, mga#5830) diff --git a/lib/network/tools.pm b/lib/network/tools.pm index 7a94d84..cdb556c 100644 --- a/lib/network/tools.pm +++ b/lib/network/tools.pm @@ -48,6 +48,10 @@ sub stop_net_interface { } sub connected() { + # if no resolv.conf from stage1, use the one we wrote in chroot: + if ($::isInstall && ! -e "/etc/resolv.conf") { + symlink "$::prefix/etc/resolv.conf", "/etc/resolv.conf"; + } c::res_init(); # reinit the resolver so DNS changes take affect gethostbyname("www.mageia.org") ? 1 : 0; } |