mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
14 lines
258 B
Bash
Executable File
14 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@kodexplorer[-1]
|
|
add ucitrack kodexplorer
|
|
set ucitrack.@kodexplorer[-1].init=kodexplorer
|
|
commit ucitrack
|
|
EOF
|
|
|
|
/etc/init.d/php8-fpm stop
|
|
/etc/init.d/php8-fpm disable
|
|
rm -rf /tmp/luci-*cache
|
|
exit 0
|