You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci get luci.themes.Argon >/dev/null 2>&1 || \
|
|
uci batch <<-EOF
|
|
set luci.themes.Argon=/luci-static/argon
|
|
set luci.main.mediaurlbase=/luci-static/argon
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|