summaryrefslogtreecommitdiffstats
path: root/lib/network/tools.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/network/tools.pm')
-rw-r--r--lib/network/tools.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/network/tools.pm b/lib/network/tools.pm
index 8628bc2..7a94d84 100644
--- a/lib/network/tools.pm
+++ b/lib/network/tools.pm
@@ -48,12 +48,7 @@ sub stop_net_interface {
}
sub connected() {
- if ($::isInstall) {
- # gethostbyname() only reads /etc/resolv.conf once so if resolv.conf is
- # not present when the test begins, writing it later is not going to help:
- symlink "$::prefix/etc/resolv.conf", "/etc/resolv.conf" if ! -e "/etc/resolv.conf";
- return scalar grep { /1 received/ } `$::prefix/bin/ping -qc1 www.mageia.org`;
- }
+ c::res_init(); # reinit the resolver so DNS changes take affect
gethostbyname("www.mageia.org") ? 1 : 0;
}