mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
10 lines
241 B
Bash
Executable file
10 lines
241 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(uci -q get luci.themes.OpenMPTCProuter)" = "" ]; then
|
|
uci batch <<-EOF
|
|
set luci.themes.OpenMPTCProuter=/luci-static/openmptcprouter
|
|
set luci.main.mediaurlbase=/luci-static/openmptcprouter
|
|
commit luci
|
|
EOF
|
|
fi
|
|
exit 0
|