module("luci.controller.opkg", package.seeall)
-function index()
- entry({"admin", "system", "opkg"}, template("opkg"), _("Software"), 30)
- entry({"admin", "system", "opkg", "list"}, call("action_list")).leaf = true
- entry({"admin", "system", "opkg", "exec"}, post("action_exec")).leaf = true
- entry({"admin", "system", "opkg", "statvfs"}, call("action_statvfs")).leaf = true
- entry({"admin", "system", "opkg", "config"}, post_on({ data = true }, "action_config")).leaf = true
-end
-
function action_list(mode)
local util = require "luci.util"
local cmd
fd:close()
end
- if not lists_dir or #lists_dir == "" then
+ if not lists_dir or #lists_dir == 0 then
lists_dir = "/tmp/opkg-lists"
end
--- /dev/null
+{
+ "admin/system/opkg": {
+ "title": "Software",
+ "order": 30,
+ "action": {
+ "type": "template",
+ "path": "opkg"
+ }
+ },
+
+ "admin/system/opkg/list/*": {
+ "action": {
+ "type": "call",
+ "module": "luci.controller.opkg",
+ "function": "action_list"
+ }
+ },
+
+ "admin/system/opkg/exec/*": {
+ "action": {
+ "type": "call",
+ "post": true,
+ "module": "luci.controller.opkg",
+ "function": "action_exec"
+ }
+ },
+
+ "admin/system/opkg/statvfs/*": {
+ "action": {
+ "type": "call",
+ "module": "luci.controller.opkg",
+ "function": "action_statvfs"
+ }
+ },
+
+ "admin/system/opkg/config/*": {
+ "action": {
+ "type": "call",
+ "post": { "data": true },
+ "module": "luci.controller.opkg",
+ "function": "action_config"
+ }
+ }
+}