Merge pull request #7616 from EduardoVega/5845-support-for-systemd-resolved

Determine if resolv.conf points to systemd-resolved
This commit is contained in:
OpenShift Merge Robot
2020-09-14 03:45:20 -04:00
committed by GitHub

View File

@ -1383,6 +1383,11 @@ func (c *Container) generateResolvConf() (string, error) {
return "", err
}
// Determine if symlink points to any of the systemd-resolved files
if strings.HasPrefix(resolvPath, "/run/systemd/resolve/") {
resolvPath = "/run/systemd/resolve/resolv.conf"
}
contents, err := ioutil.ReadFile(resolvPath)
if err != nil {
return "", errors.Wrapf(err, "unable to read %s", resolvPath)