net/dns: fix NM's GetBaseConfig when no configs exist.
Signed-off-by: David Anderson <danderson@tailscale.com>pull/1704/head
parent
fe3b1ab747
commit
9ef932517b
|
@ -279,6 +279,10 @@ func (m *nmManager) GetBaseConfig() (OSConfig, error) {
|
|||
return OSConfig{}, fmt.Errorf("unexpected NM config type %T", v.Value())
|
||||
}
|
||||
|
||||
if len(cfgs) == 0 {
|
||||
return OSConfig{}, nil
|
||||
}
|
||||
|
||||
type dnsPrio struct {
|
||||
resolvers []netaddr.IP
|
||||
domains []string
|
||||
|
|
Loading…
Reference in New Issue