diff options
Diffstat (limited to 'meta-oe/recipes-connectivity/zabbix/zabbix_7.0.9.bb')
-rw-r--r-- | meta-oe/recipes-connectivity/zabbix/zabbix_7.0.9.bb | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/zabbix/zabbix_7.0.9.bb b/meta-oe/recipes-connectivity/zabbix/zabbix_7.0.9.bb new file mode 100644 index 0000000000..a7c5478b64 --- /dev/null +++ b/meta-oe/recipes-connectivity/zabbix/zabbix_7.0.9.bb | |||
@@ -0,0 +1,77 @@ | |||
1 | SUMMARY = "Open-source monitoring solution for your IT infrastructure" | ||
2 | DESCRIPTION = "\ | ||
3 | ZABBIX is software that monitors numerous parameters of a network and the \ | ||
4 | health and integrity of servers. ZABBIX uses a flexible notification \ | ||
5 | mechanism that allows users to configure e-mail based alerts for virtually \ | ||
6 | any event. This allows a fast reaction to server problems. ZABBIX offers \ | ||
7 | excellent reporting and data visualisation features based on the stored \ | ||
8 | data. This makes ZABBIX ideal for capacity planning. \ | ||
9 | \ | ||
10 | ZABBIX supports both polling and trapping. All ZABBIX reports and \ | ||
11 | statistics, as well as configuration parameters are accessed through a \ | ||
12 | web-based front end. A web-based front end ensures that the status of \ | ||
13 | your network and the health of your servers can be assessed from any \ | ||
14 | location. Properly configured, ZABBIX can play an important role in \ | ||
15 | monitoring IT infrastructure. This is equally true for small \ | ||
16 | organisations with a few servers and for large companies with a \ | ||
17 | multitude of servers." | ||
18 | HOMEPAGE = "http://www.zabbix.com/" | ||
19 | SECTION = "Applications/Internet" | ||
20 | LICENSE = "AGPL-3.0-only" | ||
21 | LIC_FILES_CHKSUM = "file://COPYING;md5=eb1e647870add0502f8f010b19de32af" | ||
22 | DEPENDS = "libevent libpcre openldap virtual/libiconv zlib" | ||
23 | |||
24 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
25 | |||
26 | SRC_URI = "https://cdn.zabbix.com/zabbix/sources/stable/7.0/${BPN}-${PV}.tar.gz \ | ||
27 | file://0001-Fix-configure.ac.patch \ | ||
28 | file://zabbix-agent.service \ | ||
29 | " | ||
30 | SRC_URI[sha256sum] = "8d7755576f30b5d6099ff5e3574549fc248229c017f9753828565174125069f6" | ||
31 | |||
32 | inherit autotools-brokensep linux-kernel-base pkgconfig systemd useradd | ||
33 | |||
34 | SYSTEMD_PACKAGES = "${PN}" | ||
35 | SYSTEMD_SERVICE:${PN} = "zabbix-agent.service" | ||
36 | SYSTEMD_AUTO_ENABLE = "enable" | ||
37 | |||
38 | USERADD_PACKAGES = "${PN}" | ||
39 | GROUPADD_PARAM:${PN} = "-r zabbix" | ||
40 | USERADD_PARAM:${PN} = "-r -g zabbix -d /var/lib/zabbix \ | ||
41 | -s /sbin/nologin -c \"Zabbix Monitoring System\" zabbix \ | ||
42 | " | ||
43 | |||
44 | KERNEL_VERSION = "${@get_kernelversion_headers('${STAGING_KERNEL_DIR}')}" | ||
45 | |||
46 | EXTRA_OECONF = " \ | ||
47 | --enable-dependency-tracking \ | ||
48 | --enable-agent \ | ||
49 | --enable-ipv6 \ | ||
50 | --with-net-snmp \ | ||
51 | --with-ldap=${STAGING_EXECPREFIXDIR} \ | ||
52 | --with-unixodbc \ | ||
53 | --with-ssh2 \ | ||
54 | --with-sqlite3 \ | ||
55 | --with-zlib \ | ||
56 | --with-libpthread \ | ||
57 | --with-libevent \ | ||
58 | --with-libpcre=${STAGING_EXECPREFIXDIR} \ | ||
59 | --with-iconv=${STAGING_EXECPREFIXDIR} \ | ||
60 | " | ||
61 | CFLAGS:append = " -lldap -llber -pthread" | ||
62 | |||
63 | do_configure:prepend() { | ||
64 | export KERNEL_VERSION="${KERNEL_VERSION}" | ||
65 | } | ||
66 | |||
67 | do_install:append() { | ||
68 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
69 | install -d ${D}${systemd_unitdir}/system | ||
70 | install -m 0644 ${UNPACKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/ | ||
71 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/zabbix-agent.service | ||
72 | fi | ||
73 | } | ||
74 | |||
75 | FILES:${PN} += "${libdir}" | ||
76 | |||
77 | RDEPENDS:${PN} = "logrotate" | ||