mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Merge pull request #7616 from EduardoVega/5845-support-for-systemd-resolved
Determine if resolv.conf points to systemd-resolved
This commit is contained in:
@ -1383,6 +1383,11 @@ func (c *Container) generateResolvConf() (string, error) {
|
|||||||
return "", err
|
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)
|
contents, err := ioutil.ReadFile(resolvPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", errors.Wrapf(err, "unable to read %s", resolvPath)
|
return "", errors.Wrapf(err, "unable to read %s", resolvPath)
|
||||||
|
Reference in New Issue
Block a user