summaryrefslogtreecommitdiffstats
path: root/contrib/debian/netdata-plugin-logs-management.postinst
blob: 0565b54e86b1eff8e4ed90d7ffa2d476017be1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

case "$1" in
  configure|reconfigure)
    chown root:netdata /usr/libexec/netdata/plugins.d/logs-management.plugin
    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

#DEBHELPER#

exit 0