mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
ipn/ipnlocal: don't install any magicdns names if not proxying.
Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
63c00764e1
commit
f89dc1c903
@ -1493,10 +1493,14 @@ func (b *LocalBackend) authReconfig() {
|
||||
}
|
||||
dcfg.Hosts[name] = ips
|
||||
}
|
||||
dcfg.Hosts = map[string][]netaddr.IP{}
|
||||
set(nm.Name, nm.Addresses)
|
||||
for _, peer := range nm.Peers {
|
||||
set(peer.Name, peer.Addresses)
|
||||
// TODO: hack to make the current code continue to work while
|
||||
// refactoring happens.
|
||||
if proxied {
|
||||
dcfg.Hosts = map[string][]netaddr.IP{}
|
||||
set(nm.Name, nm.Addresses)
|
||||
for _, peer := range nm.Peers {
|
||||
set(peer.Name, peer.Addresses)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user