From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69921138331 for ; Tue, 22 May 2018 22:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38985E0875; Tue, 22 May 2018 22:12:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15399E0875 for ; Tue, 22 May 2018 22:12:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E6A9335C7C for ; Tue, 22 May 2018 22:12:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 885562AD for ; Tue, 22 May 2018 22:12:43 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1527009638.0f4fa41574a4ebf8117493e5411f8ab522010467.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/.gitignore src/rc/Makefile X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 0f4fa41574a4ebf8117493e5411f8ab522010467 X-VCS-Branch: master Date: Tue, 22 May 2018 22:12:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07ec0c47-5318-4f8f-8248-10d74edbbd34 X-Archives-Hash: d4caabe1afb67b22330681a4c7ac9451 commit: 0f4fa41574a4ebf8117493e5411f8ab522010467 Author: William Hubbs gmail com> AuthorDate: Tue May 22 16:08:35 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue May 22 17:20:38 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=0f4fa415 Add mark_service_crashed binary src/rc/.gitignore | 1 + src/rc/Makefile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/rc/.gitignore b/src/rc/.gitignore index 91d57075..a43088aa 100644 --- a/src/rc/.gitignore +++ b/src/rc/.gitignore @@ -56,6 +56,7 @@ mark_service_inactive mark_service_wasinactive mark_service_hotplugged mark_service_failed +mark_service_crashed rc-abort rc openrc diff --git a/src/rc/Makefile b/src/rc/Makefile index cb90875c..5e2a5e94 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -41,6 +41,7 @@ RC_SBINPROGS= mark_service_starting mark_service_started \ mark_service_stopping mark_service_stopped \ mark_service_inactive mark_service_wasinactive \ mark_service_hotplugged mark_service_failed \ + mark_service_crashed \ rc-abort swclock ifeq (${OS},Linux) @@ -123,7 +124,8 @@ is_older_than: is_older_than.o rc-misc.o mark_service_starting mark_service_started \ mark_service_stopping mark_service_stopped \ mark_service_inactive mark_service_wasinactive \ -mark_service_hotplugged mark_service_failed: do_mark_service.o rc-misc.o +mark_service_hotplugged mark_service_failed \ +mark_service_crashed: do_mark_service.o rc-misc.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} mountinfo: mountinfo.o _usage.o rc-misc.o