diff options
author | William Hubbs <williamh@gentoo.org> | 2012-10-31 17:39:52 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2012-10-31 17:39:52 +0000 |
commit | 1ddd52adae45270d6d63061f30fa71e856addf94 (patch) | |
tree | 2f05eeb99aa94c8ffa2a1c5416583094d1e109dc /sys-apps/openrc | |
parent | Stable for amd64, wrt bug #439774 (diff) | |
download | gentoo-2-1ddd52adae45270d6d63061f30fa71e856addf94.tar.gz gentoo-2-1ddd52adae45270d6d63061f30fa71e856addf94.tar.bz2 gentoo-2-1ddd52adae45270d6d63061f30fa71e856addf94.zip |
update the warning about the loopback not providing net and sync the live ebuild.
(Portage version: 2.2.0_alpha142/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'sys-apps/openrc')
-rw-r--r-- | sys-apps/openrc/openrc-0.11.2.ebuild | 8 | ||||
-rw-r--r-- | sys-apps/openrc/openrc-9999.ebuild | 20 |
2 files changed, 22 insertions, 6 deletions
diff --git a/sys-apps/openrc/openrc-0.11.2.ebuild b/sys-apps/openrc/openrc-0.11.2.ebuild index 95ed693c8e85..08cad19c4e1b 100644 --- a/sys-apps/openrc/openrc-0.11.2.ebuild +++ b/sys-apps/openrc/openrc-0.11.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.11.2.ebuild,v 1.1 2012/10/22 07:55:17 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.11.2.ebuild,v 1.2 2012/10/31 17:39:52 williamh Exp $ EAPI=4 @@ -447,9 +447,9 @@ pkg_postinst() { ewarn "In this version of OpenRC, the loopback interface no longer" ewarn "satisfies the net virtual." - ewarn "If you were depending on services that needed this, the quick fix is" - ewarn "to put this line in ${EROOT}/etc/conf.d/net:" - ewarn "rc_lo_provide=\"net\"" + ewarn "If you have services now which do not start because of this," + ewarn "They can be fixed by adding rc_need=\"!net\"" + ewarn "to the ${EROOT}/etc/conf.d/<servicename> file." ewarn "You should also file a bug against the service asking that" ewarn "need net be dropped from the dependencies." ewarn "The bug you file should block the following tracker:" diff --git a/sys-apps/openrc/openrc-9999.ebuild b/sys-apps/openrc/openrc-9999.ebuild index 263dd20a9709..18af3155c4f3 100644 --- a/sys-apps/openrc/openrc-9999.ebuild +++ b/sys-apps/openrc/openrc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.111 2012/10/18 15:03:19 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.112 2012/10/31 17:39:52 williamh Exp $ EAPI=4 @@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/${PN}.git" inherit git-2 else - SRC_URI="mirror://gentoo/${P}.tar.bz2" + SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" fi @@ -445,6 +445,22 @@ pkg_postinst() { ewarn "without networking." fi + ewarn "In this version of OpenRC, the loopback interface no longer" + ewarn "satisfies the net virtual." + ewarn "If you have services now which do not start because of this," + ewarn "They can be fixed by adding rc_need=\"!net\"" + ewarn "to the ${EROOT}/etc/conf.d/<servicename> file." + ewarn "You should also file a bug against the service asking that" + ewarn "need net be dropped from the dependencies." + ewarn "The bug you file should block the following tracker:" + ewarn "https://bugs.gentoo.org/show_bug.cgi?id=439092" + + ewarn "This version of OpenRC doesn't enable nfs mounts automatically any" + ewarn "longer. In order to mount nfs file systems, you must use the" + ewarn "nfsmount service from the nfs-utils package." + ewarn "See bug https://bugs.gentoo.org/show_bug.cgi?id=427996 for" + ewarn "more information on this." + elog "You should now update all files in /etc, using etc-update" elog "or equivalent before restarting any services or this host." elog |