mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
13 lines
216 B
Bash
Executable File
13 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
touch /etc/config/arpbind
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@arpbind[-1]
|
|
add ucitrack arpbind
|
|
set ucitrack.@arpbind[-1].init=arpbind
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|