diff options
author | Steven Barth <steven@midlink.org> | 2009-05-27 13:20:35 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-05-27 13:20:35 +0000 |
commit | 06a3956a2ff31943bbd8c989df9033617135f703 (patch) | |
tree | d9c995bb22b26dc3e049355fead2217a6be67ed6 /libs/lucid/root/etc/init.d | |
parent | 632abafabf6a1f3011fffd9cff9f5b65258ec1d2 (diff) |
LuCId fixes
Diffstat (limited to 'libs/lucid/root/etc/init.d')
-rwxr-xr-x | libs/lucid/root/etc/init.d/lucid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/lucid/root/etc/init.d/lucid b/libs/lucid/root/etc/init.d/lucid index 125dc7bf5d..1b2b04ed4e 100755 --- a/libs/lucid/root/etc/init.d/lucid +++ b/libs/lucid/root/etc/init.d/lucid @@ -9,13 +9,13 @@ set -e start() { echo -n "Starting $DESC: $NAME" - lua -e 'require "luci.lucid".start()' + lua -lluci.lucid -e 'luci.lucid.start()' echo "." } stop() { echo -n "Stopping $DESC: $NAME" - lua -e 'require "luci.lucid".stop()' + lua -lluci.lucid -e 'luci.lucid.stop()' echo "." } |