diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-10 16:47:00 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-10 16:47:00 +0000 |
commit | 2dd1080cd670da260a36dbcc1d83ecedc8d9a332 (patch) | |
tree | 48fb866a761ffdedc8367859a99ba2a61e07dfee /applications/luci-ahcp/root | |
parent | 1d2f948280aeff5071ab890e4ac50fa2caf436f9 (diff) |
applications: add luci-ahcp, support for the AHCP server package
Diffstat (limited to 'applications/luci-ahcp/root')
-rwxr-xr-x | applications/luci-ahcp/root/etc/uci-defaults/luci-ahcp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/applications/luci-ahcp/root/etc/uci-defaults/luci-ahcp b/applications/luci-ahcp/root/etc/uci-defaults/luci-ahcp new file mode 100755 index 000000000..f2b2487ca --- /dev/null +++ b/applications/luci-ahcp/root/etc/uci-defaults/luci-ahcp @@ -0,0 +1,11 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@ahcpd[-1] + add ucitrack ahcpd + set ucitrack.@ahcpd[-1].init=ahcpd + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 |