mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci get luci.themes.uCentral >/dev/null 2>&1 || \
|
|
uci batch <<-EOF
|
|
set luci.themes.uCentral=/luci-static/ucentral
|
|
set luci.main.mediaurlbase=/luci-static/ucentral
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|