net/dns: disable NetworkManager and resolved configurators temporarily.

They need some rework to do the right thing, in the meantime the direct
and resolvconf managers will work out.

The resolved implementation was never selected due to control-side settings.
The networkmanager implementation mostly doesn't get selected due to
unforeseen interactions with `resolvconf` on many platforms.
Both implementations also need rework to support the various routing modes
they're capable of.

Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
David Anderson 2021-04-02 02:25:37 -07:00
parent befd8e4e68
commit a39d2403bc
3 changed files with 9 additions and 4 deletions

View File

@ -8,10 +8,11 @@ import "tailscale.com/types/logger"
func newManager(logf logger.Logf, interfaceName string) OSConfigurator { func newManager(logf logger.Logf, interfaceName string) OSConfigurator {
switch { switch {
case isResolvedActive(): // TODO: rework NetworkManager and resolved support.
return newResolvedManager() // case isResolvedActive():
case isNMActive(): // return newResolvedManager()
return newNMManager(interfaceName) // case isNMActive():
// return newNMManager(interfaceName)
case isResolvconfActive(): case isResolvconfActive():
return newResolvconfManager(logf) return newResolvconfManager(logf)
default: default:

View File

@ -4,6 +4,8 @@
// +build linux // +build linux
//lint:file-ignore U1000 refactoring, temporarily unused code.
package dns package dns
import ( import (

View File

@ -4,6 +4,8 @@
// +build linux // +build linux
//lint:file-ignore U1000 refactoring, temporarily unused code.
package dns package dns
import ( import (