mirror of
https://github.com/containers/podman.git
synced 2025-05-21 17:16:22 +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
|
||||
}
|
||||
|
||||
// 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)
|
||||
|
Reference in New Issue
Block a user