diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-03-04 10:09:52 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 10:09:52 +0700 |
commit | 693e7a6bd4e1583b602b7e5da06675b12367fdd2 (patch) | |
tree | 97f0f8442ae2a1d8be00e56d809f2d6ac9276641 | |
parent | d71f799228f2dbc790b371b6df56f71028b1cccf (diff) | |
parent | 33239199bea51353a217254dd081ed04b1cf3e7a (diff) | |
download | vyatta-cfg-system-693e7a6bd4e1583b602b7e5da06675b12367fdd2.tar.gz vyatta-cfg-system-693e7a6bd4e1583b602b7e5da06675b12367fdd2.zip |
T286: Merge pull request #50 from rtsp/patch-1
T286: Fix resolv-file configuration problem
-rwxr-xr-x | scripts/dns-forwarding/vyatta-dns-forwarding.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dns-forwarding/vyatta-dns-forwarding.pl b/scripts/dns-forwarding/vyatta-dns-forwarding.pl index 807afa28..b6b829b3 100755 --- a/scripts/dns-forwarding/vyatta-dns-forwarding.pl +++ b/scripts/dns-forwarding/vyatta-dns-forwarding.pl @@ -159,7 +159,7 @@ sub dnsforwarding_get_values { } if ($use_dnsmasq_conf == 1) { - $output .= "resolv-file=/etc/dnsmasq.conf\n"; + $output .= "resolv-file=/etc/resolv.conf\n"; } return $output; |