#!/bin/sh

uci -q batch <<-EOF >/dev/null

	del_list ucitrack.@network[0].affects="odhcpd"
	add_list ucitrack.@network[0].affects="odhcpd"
	commit ucitrack

EOF
# remove LuCI cache
/etc/init.d/ucitrack reload
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache
exit 0


