From f09848204fa5283d21ea43e262ee41aa578e1808 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 26 Aug 2024 10:15:24 +0200 Subject: Merging upstream version 1.47.0. Signed-off-by: Daniel Baumann --- .../cmake/pkg-files/deb/plugin-logs-management/postinst | 15 --------------- .../cmake/pkg-files/deb/plugin-logs-management/preinst | 11 ----------- 2 files changed, 26 deletions(-) delete mode 100755 packaging/cmake/pkg-files/deb/plugin-logs-management/postinst delete mode 100755 packaging/cmake/pkg-files/deb/plugin-logs-management/preinst (limited to 'packaging/cmake/pkg-files') diff --git a/packaging/cmake/pkg-files/deb/plugin-logs-management/postinst b/packaging/cmake/pkg-files/deb/plugin-logs-management/postinst deleted file mode 100755 index 994b2caac..000000000 --- a/packaging/cmake/pkg-files/deb/plugin-logs-management/postinst +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -set -e - -case "$1" in - configure|reconfigure) - grep /usr/libexec/netdata /var/lib/dpkg/info/netdata-plugin-logs-management.list | xargs -n 30 chown root:netdata - chmod 0750 /usr/libexec/netdata/plugins.d/logs-management.plugin - if ! setcap "cap_dac_read_search=eip cap_syslog=eip" /usr/libexec/netdata/plugins.d/logs-management.plugin; then - chmod -f 4750 /usr/libexec/netdata/plugins.d/logs-management.plugin - fi - ;; -esac - -exit 0 diff --git a/packaging/cmake/pkg-files/deb/plugin-logs-management/preinst b/packaging/cmake/pkg-files/deb/plugin-logs-management/preinst deleted file mode 100755 index 57615ec06..000000000 --- a/packaging/cmake/pkg-files/deb/plugin-logs-management/preinst +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -case "$1" in - install) - if ! getent group netdata > /dev/null; then - addgroup --quiet --system netdata - fi - ;; -esac -- cgit v1.2.3