13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@zerotier[-1]
|
|
commit ucitrack
|
|
|
|
delete firewall.zerotier
|
|
commit firewall
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|