summaryrefslogtreecommitdiffstats
path: root/packaging/cmake/pkg-files/deb/plugin-logs-management/preinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 08:15:35 +0000
commitf09848204fa5283d21ea43e262ee41aa578e1808 (patch)
treec62385d7adf209fa6a798635954d887f718fb3fb /packaging/cmake/pkg-files/deb/plugin-logs-management/preinst
parentReleasing debian version 1.46.3-2. (diff)
downloadnetdata-f09848204fa5283d21ea43e262ee41aa578e1808.tar.xz
netdata-f09848204fa5283d21ea43e262ee41aa578e1808.zip
Merging upstream version 1.47.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/cmake/pkg-files/deb/plugin-logs-management/preinst')
-rwxr-xr-xpackaging/cmake/pkg-files/deb/plugin-logs-management/preinst11
1 files changed, 0 insertions, 11 deletions
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