mirror of
https://github.com/kenzok8/small-package
synced 2025-01-08 11:17:34 +08:00
13 lines
227 B
Bash
13 lines
227 B
Bash
#!/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
|