1#!/bin/sh
2
3uci -q get ucitrack.@network[-1] || uci -q add ucitrack network
4uci -q batch <<-EOF >/dev/null
5	set ucitrack.@network[-1].exec=/usr/local/bin/jiggle_firewall
6	commit ucitrack
7EOF
8
9rm -f /tmp/luci-indexcache
10exit 0
11