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 1QM6bW-0001Ff-Dy for garchives@archives.gentoo.org; Mon, 16 May 2011 22:49:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F7D21C060; Mon, 16 May 2011 22:49:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F1BD91C060 for ; Mon, 16 May 2011 22:49:25 +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 821F11B402F for ; Mon, 16 May 2011 22:49:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id F28B77448A for ; Mon, 16 May 2011 22:49:24 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <3d56124ed1ec127ae091391dc05581197eb29eac.vapier@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/init.sh.Linux.in X-VCS-Directories: sh/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 3d56124ed1ec127ae091391dc05581197eb29eac Date: Mon, 16 May 2011 22:49:24 +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: 0b56b543cc8ef4deb1a78ee19abbb80a commit: 3d56124ed1ec127ae091391dc05581197eb29eac Author: Mike Frysinger gentoo org> AuthorDate: Mon May 16 22:49:21 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon May 16 22:49:21 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D3d56124e only warn about /run if it exists Signed-off-by: Mike Frysinger gentoo.org> --- sh/init.sh.Linux.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in index 96474ff..21757fd 100644 --- a/sh/init.sh.Linux.in +++ b/sh/init.sh.Linux.in @@ -111,7 +111,7 @@ if [ -d /run ]; then chown root:uucp /run/lock chmod 0775 /run/lock fi -else +elif [ -e /run ]; then einfo "Unable to mount /run since it is not a directory" fi =20