From bb71cf5b7b3a48812e28dbefba8c535f9bbf9973 Mon Sep 17 00:00:00 2001 From: tea2ka Date: Fri, 21 Mar 2014 22:43:47 +0900 Subject: using a DNS server with an IPv6 address. It seems that immediately the back of an IPv6 address will not be normally recognized if it is not "\n" when using a DNS server with an IPv6 address. --- scripts/system/vyatta_update_resolv.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/system/vyatta_update_resolv.pl b/scripts/system/vyatta_update_resolv.pl index 70127512..b311bff5 100755 --- a/scripts/system/vyatta_update_resolv.pl +++ b/scripts/system/vyatta_update_resolv.pl @@ -130,7 +130,8 @@ if ($dhclient_script == 1) { if ($ns_in_resolvconf == 0) { open (my $rf, '>>', '/etc/resolv.conf') or die "$! error trying to overwrite"; - print $rf "nameserver\t$ns\t\t#nameserver written by $0\n"; + print $rf "#nameserver\t$ns\t\t#nameserver written by $0\n"; + print $rf "nameserver\t$ns\n"; close $rf; $restart_ntp = 1; } -- cgit v1.2.3