diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-06-10 17:48:41 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-06-10 17:48:41 +0000 |
commit | 408cb9371220052d711a741f2836a346472d5840 (patch) | |
tree | 543af49fc11d8738f49f43779764003ef76e9ac8 /libs/lucid | |
parent | b733587e181d5195d2562f9883b39213dcee529d (diff) |
libs/lucid: Kamikaze 8.09.1/brcm-2.4 still has the uclibc deamon() bug, work around by not deamonizing lucid
Diffstat (limited to 'libs/lucid')
-rw-r--r-- | libs/lucid/root/etc/config/lucid | 2 | ||||
-rwxr-xr-x | libs/lucid/root/etc/init.d/lucid | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/lucid/root/etc/config/lucid b/libs/lucid/root/etc/config/lucid index c3bd60432..ae6b4a072 100644 --- a/libs/lucid/root/etc/config/lucid +++ b/libs/lucid/root/etc/config/lucid @@ -1,7 +1,7 @@ config lucid main option pollinterval 15000 option threadlimit 25 - option daemonize 1 + option daemonize 0 option debug 0 list supports tcpserver list supports server diff --git a/libs/lucid/root/etc/init.d/lucid b/libs/lucid/root/etc/init.d/lucid index 1b2b04ed4..c5f992e24 100755 --- a/libs/lucid/root/etc/init.d/lucid +++ b/libs/lucid/root/etc/init.d/lucid @@ -9,7 +9,7 @@ set -e start() { echo -n "Starting $DESC: $NAME" - lua -lluci.lucid -e 'luci.lucid.start()' + lua -lluci.lucid -e 'luci.lucid.start()' & echo "." } |