mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 08:59:26 +08:00
13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
||
|
uci get luci.themes.INas >/dev/null 2>&1 || \
|
||
|
uci batch <<-EOF
|
||
|
set luci.themes.INas=/luci-static/inas
|
||
|
set luci.main.mediaurlbase=/luci-static/inas
|
||
|
commit luci
|
||
|
EOF
|
||
|
fi
|
||
|
|
||
|
exit 0
|