mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-11-03 08:28:50 +08:00
12 lines
186 B
Bash
12 lines
186 B
Bash
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci batch <<-EOF
|
|
set luci.themes.tomato=/luci-static/tomato
|
|
set luci.main.mediaurlbase=/luci-static/tomato
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|