From: Jo-Philipp Wich Date: Thu, 14 Jan 2010 12:32:27 +0000 (+0000) Subject: [packages] haproxy: forgot to invoke start-stop-daemon with background (-b) mode X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=d294c639cfa915f8c2a12505c094979c028ad924;hp=0dfbf33e6e5ff09e4c5ef661a6e7c454dc9d9c8a [packages] haproxy: forgot to invoke start-stop-daemon with background (-b) mode SVN-Revision: 19126 --- diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 185036cd02..8e7b509cce 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=haproxy PKG_VERSION:=1.3.22 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://haproxy.1wt.eu/download/1.3/src/ diff --git a/net/haproxy/files/haproxy.init b/net/haproxy/files/haproxy.init index fc6b8ff300..5e4ef1578d 100644 --- a/net/haproxy/files/haproxy.init +++ b/net/haproxy/files/haproxy.init @@ -11,7 +11,7 @@ HAPROXY_PID="/var/run/haproxy.pid" start() { [ -x "$HAPROXY_BIN" ] || return 1 - start-stop-daemon -S -x $HAPROXY_BIN -- \ + start-stop-daemon -S -b -x $HAPROXY_BIN -- \ -f "$HAPROXY_CONFIG" -V -D -d -p "$HAPROXY_PID" }