Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id E88BC781A72 for ; Sun, 5 Jan 2020 17:48:01 +0000 (UTC) Received: (Migadu outbound); Sun, 05 Jan 2020 17:48:00 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from localhost.localdomain (24-181-218-135.dhcp.hckr.nc.charter.com [24.181.218.135]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 9480F083-E19B-41D4-B0CB-B6B2B1E39C80.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Sun, 05 Jan 2020 17:48:00 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH v2] testing/telegraf: fix package setup Date: Sun, 5 Jan 2020 12:47:52 -0500 Message-Id: <20200105174752.15708-1-galen@galenabell.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200104193337.20034-1-galen@galenabell.com> References: <20200104193337.20034-1-galen@galenabell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=SizJO+82gexI4cyXvPXgrWVTW9fBOETcaswsdQQsnoI=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=BSsU3hddU4FXYlT7OpqxrENrdcGQU32UsvD+N4C159Wdpp+Yf4GeKFPmeNnWcohzaJ1Cq0B7h0mAiiBTyWcBkQ6i5Mqy+awxsTkrt4UIZla7Uiy3PWc7XAwKzul+c6zKJ5R09BpRSWKp8W+NsitQZVXRa4WNKIJzZ+F/l544S8A= Telegraf's conf.d command line uses the additional config directory `telegraf.d`, but the package installs the directory `telegraf.conf.d`. --- Bumped pkgrel (oops), switched -config-directory to /etc/telegraf.conf.d rather than changing created directory. testing/telegraf/APKBUILD | 2 +- testing/telegraf/telegraf.confd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/telegraf/APKBUILD b/testing/telegraf/APKBUILD index 7ede05c220..cb0cb4c1a0 100644 --- a/testing/telegraf/APKBUILD +++ b/testing/telegraf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Konstantin Kulikov pkgname=telegraf pkgver=1.13.0 -pkgrel=0 +pkgrel=1 pkgdesc="A plugin-driven server agent for collecting & reporting metrics, part of the InfluxDB project" url="https://www.influxdata.com/time-series-platform/telegraf/" arch="x86_64 aarch64" diff --git a/testing/telegraf/telegraf.confd b/testing/telegraf/telegraf.confd index b29a46ea2a..bf6a22907d 100644 --- a/testing/telegraf/telegraf.confd +++ b/testing/telegraf/telegraf.confd @@ -1,4 +1,4 @@ -TELEGRAF_OPTS="-config /etc/telegraf.conf -config-directory /etc/telegraf.d" +TELEGRAF_OPTS="-config /etc/telegraf.conf -config-directory /etc/telegraf.conf.d" # Uncomment to enable logging to syslog. #error_logger="logger -t $RC_SVCNAME" -- 2.24.1