summaryrefslogtreecommitdiffhomepage
path: root/themes/luci-theme-rosy/root/etc/uci-defaults/30_luci-theme-rosy
blob: 8c21ddddd661c2906117a48ca383a136886bcf66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ "$PKG_UPGRADE" != 1 ]; then
	uci get luci.themes.Rosy >/dev/null 2>&1 || \
	uci batch <<-EOF
		set luci.themes.Rosy=/luci-static/rosy
		set luci.main.mediaurlbase=/luci-static/rosy
		commit luci
	EOF
fi

exit 0