mirror of
https://github.com/netdata/netdata.git
synced 2025-03-10 11:32:30 +00:00
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
|