mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
12 lines
255 B
Bash
Executable file
12 lines
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci get luci.themes.OpenWrt2020 >/dev/null 2>&1 || \
|
|
uci batch <<-EOF
|
|
set luci.themes.OpenWrt2020=/luci-static/openwrt2020
|
|
set luci.main.mediaurlbase=/luci-static/openwrt2020
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|