mirror of
https://github.com/netdata/netdata.git
synced 2024-11-24 08:26:54 +00:00
acf5adced8
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
12 lines
236 B
Bash
Executable File
12 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
|