blob: c41c9b1f3484dc3264caff12f2412a8d276ae9fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit systemd
DESCRIPTION="Agent to report data to Check_MK for monitoring"
HOMEPAGE="http://mathias-kettner.de/check_mk.html"
MY_PV="${PV/_p/p}"
MY_P="check-mk-raw-${MY_PV}.cre"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="apache_status inventory logwatch mysql nfsexports oracle postgres smart +xinetd zypper"
RDEPEND="!!net-analyzer/check_mk
app-shells/bash:*
xinetd? ( || ( sys-apps/xinetd sys-apps/systemd ) )
"
DEPEND="${RDEPEND}"
SRC_URI="http://mathias-kettner.de/support/${MY_PV}/${MY_P}.tar.gz"
src_unpack() {
# check_mk is a tarball containing tarballs
unpack ${A}
unpack "${WORKDIR}"/${MY_P}/packages/check_mk/check_mk-${MY_PV}.tar.gz
mkdir -p "${S}" || die
cd "${S}" || die
unpack "${WORKDIR}"/check_mk-${MY_PV}/agents.tar.gz
mkdir -p "${S}"/doc || die
cd "${S}"/doc || die
unpack "${WORKDIR}"/check_mk-${MY_PV}/doc.tar.gz
}
src_install() {
# Install agent related files
newbin check_mk_agent.linux check_mk_agent
keepdir /usr/lib/check_mk_agent/local
dodir /usr/lib/check_mk_agent/plugins
dodir /etc/check_mk
dodoc doc/{AUTHORS,COPYING,ChangeLog}
docompress
if use xinetd; then
insinto /etc/xinetd.d
newins cfg_examples/xinetd.conf check_mk
systemd_dounit cfg_examples/systemd/check_mk{.socket,@.service}
fi
# Install the check_mk_agent logwatch plugin
if use logwatch; then
insinto /etc/check_mk
doins cfg_examples/logwatch.cfg
exeinto /usr/lib/check_mk_agent/plugins
doexe plugins/mk_logwatch
fi
# Install any other useflag-enabled agent plugins
exeinto /usr/lib/check_mk_agent/plugins
use inventory && newexe plugins/mk_inventory.linux mk_inventory
use smart && doexe plugins/smart
use mysql && doexe plugins/mk_mysql
use postgres && doexe plugins/mk_postgres
use apache_status && doexe plugins/apache_status
use zypper && doexe plugins/mk_zypper
use oracle && doexe plugins/mk_oracle
use nfsexports && doexe plugins/nfsexports
}
|