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 1STiom-0008ML-Bw for garchives@archives.gentoo.org; Mon, 14 May 2012 00:07:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E667E0860; Mon, 14 May 2012 00:06:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E5297E0858 for ; Mon, 14 May 2012 00:06:52 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AAC61B406B for ; Mon, 14 May 2012 00:06:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1F987E5429 for ; Mon, 14 May 2012 00:06:51 +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: <1336953639.ee1a698451a01772d50a75e95c887520260f8619.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/localmount.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ee1a698451a01772d50a75e95c887520260f8619 X-VCS-Branch: master Date: Mon, 14 May 2012 00:06:51 +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: 787be895-224f-4fd8-b17b-c9f684da1dc6 X-Archives-Hash: 22e8830cfc34898334018b9be79f21be commit: ee1a698451a01772d50a75e95c887520260f8619 Author: William Hubbs gentoo org> AuthorDate: Mon May 14 00:00:39 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon May 14 00:00:39 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Dee1a6984 do not umount /usr on linux systems We can't really umount /usr on linux systems because /usr is a special case if it is a separate filesystem which is handled by an initramfs. reported-by: tamiko+GENTOO kyomu.43-1.org X-Gentoo-Bug: 415523 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=3D415523 --- init.d/localmount.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/localmount.in b/init.d/localmount.in index de0b08b..c432a12 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -48,7 +48,7 @@ stop() done =20 if [ "$RC_UNAME" =3D Linux ]; then - no_umounts_r=3D"$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*" + no_umounts_r=3D"$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*|/usr" fi no_umounts_r=3D"^($no_umounts_r)$" =20