mirror of
https://github.com/netdata/netdata.git
synced 2025-02-02 04:39:47 +00:00
acf5adced8
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
11 lines
236 B
Bash
Executable file
11 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure|reconfigure)
|
|
if ! dpkg-statoverride --list /usr/share/netdata/www > /dev/null 2>&1; then
|
|
dpkg-statoverride --update --add root netdata 0755 /usr/share/netdata/www
|
|
fi
|
|
;;
|
|
esac
|