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 85F291395E2 for ; Wed, 30 Nov 2016 06:43:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F54BE0B81; Wed, 30 Nov 2016 06:43:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85A37E0B81 for ; Wed, 30 Nov 2016 06:43:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04D773414A6 for ; Wed, 30 Nov 2016 06:43:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F5364A5 for ; Wed, 30 Nov 2016 06:43:43 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1480488184.58884e60d3ceffa8825821334a497b0bc6afd87a.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nova/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/nova/files/nova.initd X-VCS-Directories: sys-cluster/nova/files/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 58884e60d3ceffa8825821334a497b0bc6afd87a X-VCS-Branch: master Date: Wed, 30 Nov 2016 06:43: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: 873a1dcb-23cd-4db8-8018-48e0bda130bd X-Archives-Hash: 6aae625a3f31c5e759013b3706eeb15a commit: 58884e60d3ceffa8825821334a497b0bc6afd87a Author: Matthew Thode gentoo org> AuthorDate: Wed Nov 30 06:43:04 2016 +0000 Commit: Matt Thode gentoo org> CommitDate: Wed Nov 30 06:43:04 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58884e60 sys-cluster/nova: make the pid file Package-Manager: portage-2.3.0 sys-cluster/nova/files/nova.initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-cluster/nova/files/nova.initd b/sys-cluster/nova/files/nova.initd index 2edbed9..7d679ed 100644 --- a/sys-cluster/nova/files/nova.initd +++ b/sys-cluster/nova/files/nova.initd @@ -25,6 +25,6 @@ start_pre() { start() { ebegin "Starting ${SVCNAME}" - start-stop-daemon -S -b -p ${pidfile} -q -u ${NOVA_USER:-nova} -x ${command} + start-stop-daemon -S -b -m -p ${pidfile} -q -u ${NOVA_USER:-nova} -x ${command} eend $? }