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 B8BEC1382C5 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 6EE2CE087D; Tue, 22 May 2018 22:12:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 43F72E087D for ; Tue, 22 May 2018 22:12:47 +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 A95DB335C86 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 730352AC 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.5d6dd97bba3559b57fb1c1de35e644c6dbd6baa7.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/rc-misc.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 5d6dd97bba3559b57fb1c1de35e644c6dbd6baa7 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: 1f816e0f-49d5-4efb-8a2a-edf8d547bc6e X-Archives-Hash: 4b367c5c32f573b7a95d05c091b5a077 commit: 5d6dd97bba3559b57fb1c1de35e644c6dbd6baa7 Author: William Hubbs gmail com> AuthorDate: Mon May 21 23:16:12 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=5d6dd97b rc-misc: add the crashed state src/rc/rc-misc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c index e933409f..2df4fd42 100644 --- a/src/rc/rc-misc.c +++ b/src/rc/rc-misc.c @@ -423,6 +423,7 @@ static const struct { { "service_hotplugged", RC_SERVICE_HOTPLUGGED, }, { "service_wasinactive", RC_SERVICE_WASINACTIVE, }, { "service_failed", RC_SERVICE_FAILED, }, + { "service_crashed", RC_SERVICE_CRASHED, }, }; RC_SERVICE lookup_service_state(const char *service)