1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 19:11:51 +00:00
openmptcprouter-feeds/luci-theme-openmptcprouter/root/etc/uci-defaults/luci-theme-openmptcprouter
Ycarus (Yannick Chabanois) 9974af90c7 Set theme only if new
2020-09-23 10:13:03 +02:00

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