Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 3CC63781AA1 for ; Sat, 4 Jan 2020 19:33:45 +0000 (UTC) Received: (Migadu outbound); Sat, 04 Jan 2020 19:33:41 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from loki.galenabell.com (24-181-218-135.dhcp.hckr.nc.charter.com [24.181.218.135]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 75F77E3D-523E-436C-B6B6-758A7430166E.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Sat, 04 Jan 2020 19:33:41 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH] testing/telegraf: fix package setup Date: Sat, 4 Jan 2020 14:33:37 -0500 Message-Id: <20200104193337.20034-1-galen@galenabell.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=XFVnIfi99zJ52QSpItyVLwNHBwvy2/Q46nLCYOCZEjc=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=NxQRuK8H+0kfVJ1TASCFfQHHsviYIBvdsVTA3DgHpTaPFmI0akGEqig+YM2psKGhfyt4nhT5e9eDlsw97r4ChrgfliDlGaRS34QeV13QUfFdGaQEMQBt2anMK2kIbPTxwkcZXDrq56lcRqJkdyb5fFGUuss/IMJqCKN+hWZBuaE= Telegraf's conf.d command line uses the additional config directory `telegraf.d` (which is default for telegraf), but the package installs the directory `telegraf.conf.d`. --- testing/telegraf/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/telegraf/APKBUILD b/testing/telegraf/APKBUILD index 7ede05c220..fdfa9e87ff 100644 --- a/testing/telegraf/APKBUILD +++ b/testing/telegraf/APKBUILD @@ -44,7 +44,7 @@ package() { install -Dm644 "$srcdir/$pkgname.confd" "$pkgdir/etc/conf.d/$pkgname" install -Dm755 "$builddir/$pkgname" "$pkgdir/usr/bin/$pkgname" install -Dm644 "$builddir/etc/$pkgname.conf" "$pkgdir/etc/$pkgname.conf" - install -dm755 "$pkgdir/etc/$pkgname.conf.d" + install -dm755 "$pkgdir/etc/$pkgname.d" } sha512sums="a28033aef4b21c3570f0e3bc4e316cd6da691069b7cd3faab5607a5990ec1f2a7d3cf73437ea75a98f825f99ccf47264984c93afe4eb63f348ed4912dea31a83 telegraf-1.13.0.tar.gz -- 2.24.1