From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rimuj-00010S-Dh for garchives@archives.gentoo.org; Thu, 05 Jan 2012 12:59:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76D3021C07B; Thu, 5 Jan 2012 12:59:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4B1D121C07B for ; Thu, 5 Jan 2012 12:59:13 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C9EF91B4016 for ; Thu, 5 Jan 2012 12:59:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0131280042 for ; Thu, 5 Jan 2012 12:59:12 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/bootmisc.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: dbfcf232734439da3ded008af36fc1128375b437 Date: Thu, 5 Jan 2012 12:59:12 +0000 (UTC) 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: 233b9979-0c48-4f82-9819-fc7cbf060f12 X-Archives-Hash: 25fa30dc5ecb4fc2cf5d6f2ebef0a338 commit: dbfcf232734439da3ded008af36fc1128375b437 Author: William Hubbs gentoo org> AuthorDate: Thu Jan 5 12:55:08 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jan 5 12:55:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Ddbfcf232 really disable /var/{lock,run} migration to /run This needs to be disabled until we have tmpfiles.d support. The previous method did not disable it correctly. --- init.d/bootmisc.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 50c5641..ee3c20c 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -117,7 +117,7 @@ start() fi done =20 - if [ "$RC_UNAME" =3D Linux -a -d /run -a false ]; then + if [ "$RC_UNAME" =3D Linux -a -d /run ] && false; then migrate_to_run /var/lock /run/lock migrate_to_run /var/run /run fi