From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1011444-garchives=archives.gentoo.org@lists.gentoo.org> 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 2AD351382C5 for <garchives@archives.gentoo.org>; Wed, 21 Mar 2018 18:25:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DAA3E0964; Wed, 21 Mar 2018 18:25:07 +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 F3DD8E0964 for <gentoo-commits@lists.gentoo.org>; Wed, 21 Mar 2018 18:25:06 +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 756FD335C07 for <gentoo-commits@lists.gentoo.org>; Wed, 21 Mar 2018 18:25:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A499258 for <gentoo-commits@lists.gentoo.org>; Wed, 21 Mar 2018 18:25:02 +0000 (UTC) From: "Austin English" <wizardedit@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" <wizardedit@gentoo.org> Message-ID: <1521656612.9c1d96bbe9468f5531367c2d15b44c9cd2227587.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-blackbox_exporter/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd X-VCS-Directories: net-analyzer/prometheus-blackbox_exporter/files/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 9c1d96bbe9468f5531367c2d15b44c9cd2227587 X-VCS-Branch: master Date: Wed, 21 Mar 2018 18:25:02 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2a8bd5f3-17a5-4cf4-a385-50ccb1f5f013 X-Archives-Hash: 2a060edcf316dfadf59a06a2cbfc3e40 commit: 9c1d96bbe9468f5531367c2d15b44c9cd2227587 Author: Austin English <wizardedit <AT> gentoo <DOT> org> AuthorDate: Wed Mar 21 18:23:11 2018 +0000 Commit: Austin English <wizardedit <AT> gentoo <DOT> org> CommitDate: Wed Mar 21 18:23:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1d96bb net-analyzer/prometheus-blackbox_exporter: fix typo that breaks initd :--config file passes '-config' instead of '--config', which doesn't work Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../files/prometheus-blackbox_exporter.initd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd index 45da799723d..ab001d41abe 100644 --- a/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd +++ b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 2016-2017 Gentoo Foundation +# Copyright 2016-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 description="Prometheus blackbox exporter" @@ -8,7 +8,7 @@ user=${user:-${RC_SVCNAME}} group=${group:-${RC_SVCNAME}} command="/usr/bin/blackbox_exporter" -command_args="${command_args:--config.file=/etc/blackbox_exporter/blackbox.yml}" +command_args="${command_args:---config.file=/etc/blackbox_exporter/blackbox.yml}" command_background="true" start_stop_daemon_args="--user ${user} --group ${group} \ --stdout /var/log/blackbox_exporter/${RC_SVCNAME}.log \