libs/lpk: Fixed typos
[project/luci.git] / libs / lpk / luasrc / lpk / core / install.lua
index e69de29..434f618 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.retrieved then
+               print("Step down to retrieve")
+               return "retrieve"
+       else
+               print("Coming up again")
+       end
+end
\ No newline at end of file