Stop creating resolv.conf symlink in more circumstances
This commit is contained in:
parent
a734fa3ff3
commit
5bf2aac8b4
13
systemd.spec
13
systemd.spec
@ -673,8 +673,17 @@ systemctl --global preset-all &>/dev/null || :
|
|||||||
# too before NetworkManager gets a chance. (systemd-tmpfiles invocation above
|
# too before NetworkManager gets a chance. (systemd-tmpfiles invocation above
|
||||||
# does not do this, because it's marked with ! and we don't specify --boot.)
|
# does not do this, because it's marked with ! and we don't specify --boot.)
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1873856
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1873856
|
||||||
if systemctl -q is-enabled systemd-resolved.service &>/dev/null &&
|
#
|
||||||
! mountpoint /etc/resolv.conf &>/dev/null; then
|
# If systemd is not running, don't overwrite the symlink because that
|
||||||
|
# will immediately break DNS resolution, since systemd-resolved is
|
||||||
|
# also not running (https://bugzilla.redhat.com/show_bug.cgi?id=1891847).
|
||||||
|
#
|
||||||
|
# Also don't creat the symlink to the stub when the stub is disabled (#1891847 again).
|
||||||
|
if test -d /run/systemd/system/ &&
|
||||||
|
systemctl -q is-enabled systemd-resolved.service &>/dev/null &&
|
||||||
|
! mountpoint /etc/resolv.conf &>/dev/null &&
|
||||||
|
! systemd-analyze cat-config systemd/resolved.conf 2>/dev/null | \
|
||||||
|
grep -qE '^DNSStubListener\s*=\s*([nN][oO]?|[fF]|[fF][aA][lL][sS][eE]|0|[oO][fF][fF])$'; then
|
||||||
ln -fsv ../run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
ln -fsv ../run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user