[meta-webserver,v2,3/3] netdata: do not send anonymous statistics by default.

Message ID 20211219084754.2215526-3-jan.vermaete@gmail.com
State New
Headers show
Series [meta-webserver,v2,1/3] netdata: version bump from 1.32.0 to 1.32.1 | expand

Commit Message

Jan Vermaete Dec. 19, 2021, 8:47 a.m. UTC
Netdata is sending anonymous statics data to Google by default.

Disabling this by default in the recipe by adding the
 .opt-out-from-anonymous-statistics file in the netdata config
directory.
@see: https://learn.netdata.cloud/docs/agent/anonymous-statistics#opt-out

Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com>
---
 .../recipes-webadmin/netdata/netdata_1.32.1.bb           | 9 +++++++++
 1 file changed, 9 insertions(+)

Patch

diff --git a/meta-webserver/recipes-webadmin/netdata/netdata_1.32.1.bb b/meta-webserver/recipes-webadmin/netdata/netdata_1.32.1.bb
index d479051c4..6824dd725 100644
--- a/meta-webserver/recipes-webadmin/netdata/netdata_1.32.1.bb
+++ b/meta-webserver/recipes-webadmin/netdata/netdata_1.32.1.bb
@@ -20,6 +20,10 @@  UPSTREAM_CHECK_URI = "https://github.com/netdata/netdata/releases"
 
 S = "${WORKDIR}/${BPN}-v${PV}"
 
+PACKAGECONFIG ??= "\
+    anonymous \
+"
+
 inherit pkgconfig autotools-brokensep useradd systemd
 
 LIBS:toolchain-clang:x86 = "-latomic"
@@ -58,6 +62,11 @@  do_install:append() {
     sed -i -e 's,@@libdir,${libexecdir},g' ${D}${sysconfdir}/netdata/netdata.conf
     sed -i -e 's,@@datadir,${datadir},g' ${D}${sysconfdir}/netdata/netdata.conf
 
+    # Stop sending anonymous statistics to Google Analytics
+    if ${@bb.utils.contains('PACKAGECONFIG', 'anonymous', 'true', 'false', d)}; then
+        touch ${D}${sysconfdir}/netdata/.opt-out-from-anonymous-statistics
+    fi
+
     install --group netdata --owner netdata --directory ${D}${localstatedir}/cache/netdata
     install --group netdata --owner netdata --directory ${D}${localstatedir}/lib/netdata