summaryrefslogtreecommitdiffstats
path: root/packaging/cmake/pkg-files/deb/plugin-logs-management/postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:20 +0000
commit87d772a7d708fec12f48cd8adc0dedff6e1025da (patch)
tree1fee344c64cc3f43074a01981e21126c8482a522 /packaging/cmake/pkg-files/deb/plugin-logs-management/postinst
parentAdding upstream version 1.46.3. (diff)
downloadnetdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.tar.xz
netdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.zip
Adding upstream version 1.47.0.upstream/1.47.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/cmake/pkg-files/deb/plugin-logs-management/postinst')
-rwxr-xr-xpackaging/cmake/pkg-files/deb/plugin-logs-management/postinst15
1 files changed, 0 insertions, 15 deletions
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