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 1QCyGw-0003b4-VL for garchives@archives.gentoo.org; Thu, 21 Apr 2011 18:06:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A8071C042; Thu, 21 Apr 2011 18:06:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4D6FA1C042 for ; Thu, 21 Apr 2011 18:06:27 +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 BCE671B405D for ; Thu, 21 Apr 2011 18:06:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id C8F8F802C1 for ; Thu, 21 Apr 2011 18:06:25 +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: <8202e7dce4065b79c272dc11941b371a9c4f99fc.williamH@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/local.in X-VCS-Directories: init.d/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 8202e7dce4065b79c272dc11941b371a9c4f99fc Date: Thu, 21 Apr 2011 18:06:25 +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: 60ab0491475c3a84eefc960c1db1362f commit: 8202e7dce4065b79c272dc11941b371a9c4f99fc Author: William Hubbs gmail com> AuthorDate: Thu Apr 21 18:02:49 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Apr 21 18:02:49 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D8202e7dc add back the eend command in start/stop for local service This was added back due to a user request. It will always be on a line of its ownbecause I'm considering adding more verbose info messages to local that show when each service is run if local is run with the -v option. X-Gentoo-Bug: 363343 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=3D363343 --- init.d/local.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/init.d/local.in b/init.d/local.in index 4db492e..17a4c86 100644 --- a/init.d/local.in +++ b/init.d/local.in @@ -27,7 +27,7 @@ start() local_start fi =20 - return 0 + eend 0 } =20 stop() @@ -47,5 +47,5 @@ stop() local_stop fi =20 - return 0 + eend 0 }