libs/lpk: Several fixes in CLI -> Machine bindings
[project/luci.git] / libs / lpk / luasrc / lpk / core / install.lua
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..abf612b2956cb638207018a04c4f3742f550a397 100644 (file)
@@ -0,0 +1,16 @@
+module("luci.lpk.core.install", package.seeall)
+
+function entry(register, ...)
+       print("Requested install of " .. table.concat(arg, ", "))
+       return true
+end
+
+function process(register)
+       register.sometext = "Test"
+       if not register.retreived then
+               print("Step down to retreive")
+               return "retreive"
+       else
+               print("Coming up again")
+       end
+end
\ No newline at end of file