luci-theme-*: set mediaurlbase if it is the first time to be installed
[oweals/luci.git] / themes / luci-theme-rosy / root / etc / uci-defaults / 30_luci-theme-rosy
1 #!/bin/sh
2
3 if [ "$PKG_UPGRADE" != 1 ]; then
4         uci get luci.themes.Rosy >/dev/null 2>&1 || \
5         uci batch <<-EOF
6                 set luci.themes.Rosy=/luci-static/rosy
7                 set luci.main.mediaurlbase=/luci-static/rosy
8                 commit luci
9         EOF
10 fi
11
12 exit 0