X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 2E757DC008C for ; Sun, 20 Jan 2013 11:06:06 +0000 (UTC) Received: by mail-ee0-f42.google.com with SMTP id b47so2362093eek.1 for ; Sun, 20 Jan 2013 03:06:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:content-type:subject:date:message-id:to :mime-version:x-mailer; bh=Afi5PspFGNPFHeiPgVmCsWdi+1Q9WPIazwLq8JCtsWw=; b=XzORDJf9Fu8lcVJjFxB0XVQaNcm1P2EK14pKtJ5TiQ/Jag3EJ1u7ld18sdsS1JYdZP yDLVtDCijTInTZFApxrnLCP2GNsJz5V2/0QCofehg3FfZRHKL7UMoCOttDOUQ5HXhIrW 3Q1RqTxQK+QSEitazBJa3jg1v/MwQNqUFMHTsiMKK7lWP/rL2iLkQaNJoQcHoip1jQGf xsD0sh7P3PCw0+wetN/RPvY5b2rHqKDEGe2JBEg3NTZtTTxmOnElGf5OBkQQ54rOtDkA 6mYIDXRYrntWjENY9ILb+jiG0Ah/WWqr3vSLDN1hOegyh1YMSBjETqIJhr7a+2IgIogR sudg== X-Received: by 10.14.2.5 with SMTP id 5mr10492087eee.30.1358679965526; Sun, 20 Jan 2013 03:06:05 -0800 (PST) Received: from [172.16.40.95] ([81.21.170.84]) by mx.google.com with ESMTPS id d3sm16773760eeo.13.2013.01.20.03.06.04 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 20 Jan 2013 03:06:04 -0800 (PST) From: Florian Heigl Content-Type: multipart/mixed; boundary="Apple-Mail=_7D17F506-FDE1-4668-9DFD-16584CC28B75" Subject: [alpine-devel] Patch: Add some dependencies to testing/check_mk-agent Date: Sun, 20 Jan 2013 13:06:02 +0200 Message-Id: <79B51428-9BA4-4618-B373-50E651F3EA0D@gmail.com> To: alpine-devel@lists.alpinelinux.org X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 (Apple Message framework v1283) X-Mailer: Apple Mail (2.1283) --Apple-Mail=_7D17F506-FDE1-4668-9DFD-16584CC28B75 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii I decided to make the aport depend on two GNU thinggies (bash, = coreutils), ethtool (link speed detection) and python (log file = monitoring) This is in line with what most other distros have, except that I = generally include the log file monitoring module. --Apple-Mail=_7D17F506-FDE1-4668-9DFD-16584CC28B75 Content-Disposition: attachment; filename=0002-depends-for-check_mk-agent Content-Type: application/octet-stream; name="0002-depends-for-check_mk-agent" Content-Transfer-Encoding: 7bit commit d0c9f1e519f77b622d536f8e14a2c7a8a54868e4 Author: Florian Heigl Date: Sun Jan 20 11:02:03 2013 +0000 testing/check_mk-agent - depend on a few packages. With these installed, almost any module should work diff --git a/testing/check_mk-agent/APKBUILD b/testing/check_mk-agent/APKBUILD index 10c6cda..1ace08e 100644 --- a/testing/check_mk-agent/APKBUILD +++ b/testing/check_mk-agent/APKBUILD @@ -7,9 +7,11 @@ pkgdesc="Monitoring agent for Check_MK" url="http://mathias-kettner.de/checkmk/" arch="x86 x86_64" license="GPL" -# python is needed for the logwatch and apache modules -# logwatch is worth it -depends="python" +# Bash: agent has a lot of bashisms. +# python: logfile, java and apache monitoring +# ethtool: for interface speed +# coreutils: ps syntax +depends="bash python coreutils ethtool" depends_dev="" makedepends="$depends_dev" install="" --Apple-Mail=_7D17F506-FDE1-4668-9DFD-16584CC28B75 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Florian --Apple-Mail=_7D17F506-FDE1-4668-9DFD-16584CC28B75-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---