From 81c51f25c9d99546175d08b68aafff424df1bb26 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 4 Sep 2012 18:12:43 +0000 Subject: (connected) use chroot's /etc/resolv.conf if stage1 didn't write any (Derek Jennings, mga#5772) --- lib/network/tools.pm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/network/tools.pm') 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; } -- cgit v1.2.1