diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-07-30 10:48:01 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-07-30 11:46:34 -0400 |
commit | 6c6cd74d053dcbe1d7e6a8217c7674e07f4c74ca (patch) | |
tree | 2af018afb3dd588e1f67ad3886d9b5005f3b435b | |
parent | e0d8e57956c1394a28ca165ff5d16acdfea1a633 (diff) | |
download | gentoo-6c6cd74d053dcbe1d7e6a8217c7674e07f4c74ca.tar.gz gentoo-6c6cd74d053dcbe1d7e6a8217c7674e07f4c74ca.tar.xz |
sys-apps/systemd: update resolv.conf warning
Package-Manager: portage-2.3.0_p16
-rw-r--r-- | sys-apps/systemd/systemd-9999.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index a470187a1ce..b0e8183ab0a 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -480,11 +480,9 @@ pkg_postinst() { eerror fi - if [[ $(readlink "${ROOT}"/etc/resolv.conf) == */run/systemd/network/resolv.conf ]]; then - ewarn "resolv.conf is now generated by systemd-resolved. To use it, enable" - ewarn "systemd-resolved.service, and create a symlink from /etc/resolv.conf" - ewarn "to /run/systemd/resolve/resolv.conf" - ewarn + if [[ $(readlink "${ROOT}"etc/resolv.conf) == */run/systemd/* ]]; then + ewarn "You should replace the resolv.conf symlink:" + ewarn "ln -snf ${ROOTPREFIX}/lib/systemd ${ROOT}etc/resolv.conf" fi } |