From: Florian Fainelli Date: Mon, 16 Jun 2008 13:21:16 +0000 (+0000) Subject: Fix broken init scripts for ahcpd (#3550) X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=77ffdb3504bd04131c3ae2be5a7e5abeceed27fa;p=openwrt%2Fsvn-archive%2Farchive.git Fix broken init scripts for ahcpd (#3550) SVN-Revision: 11505 --- diff --git a/ipv6/ahcpd/files/ahcpd.config b/ipv6/ahcpd/files/ahcpd.config index 2cc985de6a..58db58bc5b 100755 --- a/ipv6/ahcpd/files/ahcpd.config +++ b/ipv6/ahcpd/files/ahcpd.config @@ -1,4 +1,4 @@ config ahcpd - option interfaces "wl0 alpha-beta huponomos" - option no_dns true + option interfaces "wl0" + option no_dns false option no_ipv4 true diff --git a/ipv6/ahcpd/files/ahcpd.init b/ipv6/ahcpd/files/ahcpd.init index c87b291f70..a885c5477b 100644 --- a/ipv6/ahcpd/files/ahcpd.init +++ b/ipv6/ahcpd/files/ahcpd.init @@ -19,7 +19,7 @@ start() { if [ -e $pidfile ] ; then echo "$pidfile exists -- not starting ahcpd." >&2 else - /usr/bin/ahcpd -D -I $pidfile ${no_ipv4:+-s} ${no_dns:+-N} $authority $interfaces + /usr/sbin/ahcpd -D -I $pidfile ${no_ipv4:+-s} ${no_dns:+-N} $authority $interfaces fi }