diff options
Diffstat (limited to 'meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb')
-rw-r--r-- | meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb b/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb deleted file mode 100644 index b06a5df314..0000000000 --- a/meta-webserver/recipes-webadmin/netdata/netdata_1.44.3.bb +++ /dev/null | |||
@@ -1,81 +0,0 @@ | |||
1 | SUMMARY = "Real-time performance monitoring" | ||
2 | DESCRIPTION = "Netdata is high-fidelity infrastructure monitoring and troubleshooting. \ | ||
3 | Open-source, free, preconfigured, opinionated, and always real-time." | ||
4 | HOMEPAGE = "https://github.com/netdata/netdata/" | ||
5 | LICENSE = "GPL-3.0-only" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fc9b848046ef54b5eaee6071947abd24" | ||
7 | |||
8 | DEPENDS += "json-c libuv libyaml util-linux zlib " | ||
9 | |||
10 | SRC_URI = "\ | ||
11 | https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BPN}-v${PV}.tar.gz \ | ||
12 | file://netdata.conf \ | ||
13 | file://netdata.service \ | ||
14 | " | ||
15 | |||
16 | SRC_URI[sha256sum] = "50df30a9aaf60d550eb8e607230d982827e04194f7df3eba0e83ff7919270ad2" | ||
17 | |||
18 | UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/tags" | ||
19 | UPSTREAM_CHECK_REGEX = "${BPN}/releases/tag/v(?P<pver>\d+(?:\.\d+)*)" | ||
20 | |||
21 | S = "${WORKDIR}/${BPN}-v${PV}" | ||
22 | |||
23 | # Stop sending anonymous statistics to Google Analytics | ||
24 | NETDATA_ANONYMOUS ??= "enabled" | ||
25 | |||
26 | inherit pkgconfig autotools-brokensep useradd systemd | ||
27 | |||
28 | LIBS:toolchain-clang:x86 = "-latomic" | ||
29 | LIBS:riscv64 = "-latomic" | ||
30 | LIBS:riscv32 = "-latomic" | ||
31 | LIBS:mips = "-latomic" | ||
32 | export LIBS | ||
33 | |||
34 | #systemd | ||
35 | SYSTEMD_PACKAGES = "${PN}" | ||
36 | SYSTEMD_SERVICE:${PN} = "netdata.service" | ||
37 | SYSTEMD_AUTO_ENABLE:${PN} = "enable" | ||
38 | |||
39 | #User specific | ||
40 | USERADD_PACKAGES = "${PN}" | ||
41 | USERADD_PARAM:${PN} = "--system --no-create-home --home-dir ${localstatedir}/run/netdata --user-group netdata" | ||
42 | |||
43 | PACKAGECONFIG ??= "openssl" | ||
44 | PACKAGECONFIG[cloud] = "--enable-cloud, --disable-cloud," | ||
45 | PACKAGECONFIG[lz4] = "--enable-lz4, --disable-lz4, lz4" | ||
46 | PACKAGECONFIG[openssl] = "--enable-openssl, --disable-openssl, openssl" | ||
47 | |||
48 | # ebpf doesn't compile (or detect) the cross compilation well | ||
49 | EXTRA_OECONF += "--disable-ebpf" | ||
50 | |||
51 | do_install:append() { | ||
52 | #set S UID for plugins | ||
53 | chmod 4755 ${D}${libexecdir}/netdata/plugins.d/apps.plugin | ||
54 | |||
55 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
56 | # Install systemd unit files | ||
57 | install -d ${D}${systemd_unitdir}/system | ||
58 | install -m 0644 ${UNPACKDIR}/netdata.service ${D}${systemd_unitdir}/system | ||
59 | sed -i -e 's,@@datadir,${datadir_native},g' ${D}${systemd_unitdir}/system/netdata.service | ||
60 | fi | ||
61 | |||
62 | # Install default netdata.conf | ||
63 | install -d ${D}${sysconfdir}/netdata | ||
64 | install -m 0644 ${UNPACKDIR}/netdata.conf ${D}${sysconfdir}/netdata/ | ||
65 | sed -i -e 's,@@sysconfdir,${sysconfdir},g' ${D}${sysconfdir}/netdata/netdata.conf | ||
66 | sed -i -e 's,@@libdir,${libexecdir},g' ${D}${sysconfdir}/netdata/netdata.conf | ||
67 | sed -i -e 's,@@datadir,${datadir},g' ${D}${sysconfdir}/netdata/netdata.conf | ||
68 | |||
69 | if [ "${NETDATA_ANONYMOUS}" = "enabled" ]; then | ||
70 | touch ${D}${sysconfdir}/netdata/.opt-out-from-anonymous-statistics | ||
71 | fi | ||
72 | |||
73 | install --group netdata --owner netdata --directory ${D}${localstatedir}/cache/netdata | ||
74 | install --group netdata --owner netdata --directory ${D}${localstatedir}/lib/netdata | ||
75 | |||
76 | chown -R netdata:netdata ${D}${datadir}/netdata/web | ||
77 | } | ||
78 | |||
79 | FILES:${PN} += "${localstatedir}/cache/netdata/ ${localstatedir}/lib/netdata/" | ||
80 | |||
81 | RDEPENDS:${PN} = "bash python3-core zlib" | ||