10 lines
159 B
Bash
Executable file
10 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@polipo[-1]
|
|
add ucitrack polipo
|
|
set ucitrack.@polipo[-1].init=polipo
|
|
commit ucitrack
|
|
EOF
|
|
|
|
exit 0
|