12 lines
234 B
Bash
12 lines
234 B
Bash
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci get luci.themes.Design >/dev/null 2>&1 || \
|
|
uci batch <<-EOF
|
|
set luci.themes.Design=/luci-static/design
|
|
set luci.main.mediaurlbase=/luci-static/design
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0 |