blob: b5161843fea9b3eef064ce4f56a4f0612a8e7349 (
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.Bootstrap=/luci-static/bootstrap
set luci.main.mediaurlbase=/luci-static/bootstrap
commit luci
EOF
fi
exit 0
|