summaryrefslogtreecommitdiffhomepage
path: root/themes/luci-theme-openwrt-2020/root/etc/uci-defaults/30_luci-theme-openwrt-2020
blob: 7c49acfda9e49ee50b037f623ba10554cbe1972a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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