net/dns: rename resolvconf.go to debian_resolvconf.go.

Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
David Anderson
2021-04-10 23:31:00 -07:00
parent 9831f1b183
commit 9a48bac8ad
5 changed files with 185 additions and 191 deletions

View File

@@ -14,12 +14,7 @@ func NewOSConfigurator(logf logger.Logf, interfaceName string) OSConfigurator {
// case isNMActive():
// return newNMManager(interfaceName)
case isResolvconfActive():
if resolvconfIsOpenresolv() {
return newOpenresolvManager()
} else {
// Debian resolvconf
return newResolvconfManager(logf)
}
return newResolvconfManager(logf)
default:
return newDirectManager()
}