mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-15 06:05:31 +08:00
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@kuainiao[-1]
|
|
add ucitrack kuainiao
|
|
set ucitrack.@kuainiao[-1].init=kuainiao
|
|
commit ucitrack
|
|
EOF
|
|
exit 0 |