feat(NET-591): allow generic DNS entries (#2568)

This commit is contained in:
pwillis7
2023-09-20 12:20:08 +00:00
committed by GitHub
parent 7c4870e82f
commit fe842e0f05
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ func SetDNS() error {
return err
}
for _, entry := range dns {
hostfile.AddHost(entry.Address, entry.Name+"."+entry.Network)
hostfile.AddHost(entry.Address, entry.Name)
}
}
if corefilestring == "" {