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/root/etc/init.d | |
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/root/etc/init.d')
-rwxr-xr-x | libs/lucid/root/etc/init.d/lucid | 2 |
1 files changed, 1 insertions, 1 deletions
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 "." } |