diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:22:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:22:32 +0000 |
commit | 0bbc0c292e607f3a40017a23d237c5d44eb30783 (patch) | |
tree | 550fdcacb3ba2f56c4a9cf93cab9581fd9b3ab97 /debian/netdata-core.postinst | |
parent | Adding upstream version 1.12.0. (diff) | |
download | netdata-0bbc0c292e607f3a40017a23d237c5d44eb30783.tar.xz netdata-0bbc0c292e607f3a40017a23d237c5d44eb30783.zip |
Adding debian version 1.12.0-1+deb10u1.debian/1.12.0-1+deb10u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/netdata-core.postinst')
-rwxr-xr-x | debian/netdata-core.postinst | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/debian/netdata-core.postinst b/debian/netdata-core.postinst new file mode 100755 index 0000000..c990489 --- /dev/null +++ b/debian/netdata-core.postinst @@ -0,0 +1,53 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + # creating group + if ! getent group netdata > /dev/null 2>&1 + then + groupadd --system netdata + fi + + # creating user + if ! getent passwd netdata > /dev/null 2>&1 + then + useradd --system -g netdata --home-dir /var/lib/netdata --no-create-home netdata + mkdir -p /var/lib/netdata + fi + + # creating directory overrides + for DIRECTORY in /var/cache/netdata /var/lib/netdata + do + mkdir -p "${DIRECTORY}" + + if ! dpkg-statoverride --list "${DIRECTORY}" > /dev/null 2>&1 + then + dpkg-statoverride --update --add netdata netdata 0755 "${DIRECTORY}" + fi + done + + # handling plugin capabilities (or setuid as fallback) + chown -R root:netdata /usr/lib/netdata/plugins.d + setcap cap_dac_read_search,cap_sys_ptrace+ep /usr/lib/netdata/plugins.d/apps.plugin || \ + chmod 4754 /usr/lib/netdata/plugins.d/apps.plugin + + # handling log owner and permissions + chown netdata:adm /var/log/netdata + chmod 2750 /var/log/netdata + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |