From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JkzNf-0000j8-DR for garchives@archives.gentoo.org; Sun, 13 Apr 2008 10:24:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD5BAE04C1; Sun, 13 Apr 2008 10:24:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B941AE04C1 for ; Sun, 13 Apr 2008 10:24:14 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 83CCA660E6 for ; Sun, 13 Apr 2008 10:24:13 +0000 (UTC) Received: from hollow by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JkzNc-0005DH-GS for gentoo-commits@lists.gentoo.org; Sun, 13 Apr 2008 10:24:12 +0000 From: "Benedikt Boehm (hollow)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hollow@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/util-vserver/files: util-vserver-0.30.215-openrc.patch util-vserver-0.30.214-openrc.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: util-vserver-0.30.215-openrc.patch util-vserver-0.30.214-openrc.patch X-VCS-Directories: sys-cluster/util-vserver/files X-VCS-Committer: hollow X-VCS-Committer-Name: Benedikt Boehm Content-Type: text/plain; charset=utf8 Message-Id: Sender: Benedikt Boehm Date: Sun, 13 Apr 2008 10:24:12 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ea7e20be-08c5-40dd-ada5-692a7369f174 X-Archives-Hash: f531fb592da45ad43ac3c0cb6e1ccac2 hollow 08/04/13 10:24:12 Added: util-vserver-0.30.215-openrc.patch Removed: util-vserver-0.30.214-openrc.patch Log: 0.30.215 stable on amd64/x86; fix mktemp dependency; fix functions.sh l= ocation for openrc; remove old version (Portage version: 2.1.5_rc2) Revision Changes Path 1.1 sys-cluster/util-vserver/files/util-vserver-0.30.215= -openrc.patch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/util-v= server/files/util-vserver-0.30.215-openrc.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/util-v= server/files/util-vserver-0.30.215-openrc.patch?rev=3D1.1&content-type=3D= text/plain Index: util-vserver-0.30.215-openrc.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Index: scripts/vserver-init.functions =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- scripts/vserver-init.functions (revision 2711) +++ scripts/vserver-init.functions (revision 2712) @@ -21,7 +21,7 @@ _postResult() { echo; } lockfile=3D/var/lock/subsys/$LOCKFILE elif test -e /etc/gentoo-release; then - . /sbin/functions.sh + . /etc/init.d/functions.sh _beginResult() { ebegin "$@"; } _postResult() { :; } success() { eend 0; } Index: distrib/gentoo/initpost =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- distrib/gentoo/initpost (revision 2711) +++ distrib/gentoo/initpost (revision 2712) @@ -63,6 +63,11 @@ if test "$initstyle" =3D=3D "gentoo"; then echo ">>> Installing special init-style magic ... " =20 + # force /lib/rc/sh even if we don't have it in older stages + $_CHROOT_SH mkdir /lib 2>/dev/null || : + $_CHROOT_SH mkdir /lib/rc 2/dev/null || : + $_CHROOT_SH mkdir /lib/rc/sh 2/dev/null || : + $_CAT "$__DISTRIBDIR"/gentoo/init-vserver.sh | \ $_CHROOT_SH truncate /lib/rc/sh/init-vserver.sh $_CHROOT_SH chmod 0755 /lib/rc/sh/init-vserver.sh --=20 gentoo-commits@lists.gentoo.org mailing list