blob: 320a649d9c7d135bef928f2c6c452ba99dd18fcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|