build: split into luci and luci-addons packages
[project/luci.git] / libs / lucid / root / etc / init.d / lucid
index 125dc7b..1b2b04e 100755 (executable)
@@ -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 "."
 }