From: Gabriel Kerneis Date: Tue, 2 Apr 2013 14:12:07 +0000 (+0000) Subject: ahcpd: fix init script X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dfcf5664f1e04302f9dc03644b185c6eb96965d7;p=openwrt%2Fsvn-archive%2Farchive.git ahcpd: fix init script eval is necessary because $args introduces quotes SVN-Revision: 36153 --- diff --git a/ipv6/ahcpd/Makefile b/ipv6/ahcpd/Makefile index 41db0d8e27..a42db71fa3 100644 --- a/ipv6/ahcpd/Makefile +++ b/ipv6/ahcpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ahcpd PKG_VERSION:=0.53 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.pps.jussieu.fr/~jch/software/files/ diff --git a/ipv6/ahcpd/files/ahcpd.init b/ipv6/ahcpd/files/ahcpd.init index 6654b00626..dee21c4c75 100644 --- a/ipv6/ahcpd/files/ahcpd.init +++ b/ipv6/ahcpd/files/ahcpd.init @@ -97,7 +97,7 @@ start() { config_foreach ahcp_config ahcpd config_foreach ahcp_server ahcpd [ -z "$interfaces" ] && return 0 - service_start /usr/sbin/ahcpd -D $args $interfaces + eval "service_start /usr/sbin/ahcpd -D $args $interfaces" } stop() {