blob: 96ab461859f1ec648cda161e56b605530f2b73cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if [ "$PKG_UPGRADE" != 1 ]; then
uci batch <<-EOF
set luci.themes.Material=/luci-static/material
set luci.main.mediaurlbase=/luci-static/material
commit luci
EOF
fi
exit 0
|