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 1QBx70-0002Vj-2a for garchives@archives.gentoo.org; Mon, 18 Apr 2011 22:40:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2769D1C015; Mon, 18 Apr 2011 22:39:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E79491C015 for ; Mon, 18 Apr 2011 22:39:57 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6AE461B402F for ; Mon, 18 Apr 2011 22:39:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7BAB38006D for ; Mon, 18 Apr 2011 22:39:56 +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/localmount.in X-VCS-Directories: init.d/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ede4d1cd60ca7ce283095833b3ad545a6364e178 Date: Mon, 18 Apr 2011 22:39:56 +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: X-Archives-Hash: 8c1adf268ce268f210a1fc0d31de3ac3 commit: ede4d1cd60ca7ce283095833b3ad545a6364e178 Author: Lars Wendler gentoo org> AuthorDate: Mon Apr 18 15:28:47 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Apr 18 20:26:19 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Dede4d1cd Don't unmount /run on shutdown This is needed so that udev will stop properly on shutdown. X-Gentoo-Bug: 363971 X-Gentoo-Bug-Url: http://bugs.gentoo.org/show_bug.cgi?id=3D363971 --- 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 e2ea801..b4f7346 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -49,7 +49,7 @@ stop() fi =20 if [ "$RC_UNAME" =3D Linux ]; then - no_umounts_r=3D"$no_umounts_r|/proc|/proc/.*|/sys|/sys/.*" + no_umounts_r=3D"$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*" fi no_umounts_r=3D"^($no_umounts_r)$" =20