From: Nicolas Thill <nico@openwrt.org>
Date: Fri, 22 Jul 2005 22:53:12 +0000 (+0000)
Subject: command is no daemon, run it in the background
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e6232023adf17a3ad806f1df320f4a88ee0e633f;p=openwrt%2Fstaging%2Fdedeckeh.git

command is no daemon, run it in the background

SVN-Revision: 1534
---

diff --git a/openwrt/package/frickin/files/frickin.init b/openwrt/package/frickin/files/frickin.init
index 0a80d417dd..e07a0945b6 100644
--- a/openwrt/package/frickin/files/frickin.init
+++ b/openwrt/package/frickin/files/frickin.init
@@ -6,7 +6,7 @@ DEFAULT=/etc/default/$BIN
 
 case $1 in
  start)
-  $BIN $OPTIONS
+  $BIN $OPTIONS &
   ;;
  *)
   echo "usage: $0 (start)"