diff options
author | Steven Barth <steven@midlink.org> | 2008-04-07 21:01:39 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-07 21:01:39 +0000 |
commit | f341dfe91a766003a9333725e88823e2866fb3c8 (patch) | |
tree | 3596ea31d97ff8c730c5805f2f4d16641b6456cd /src/ffluci/controller/admin | |
parent | 9de2f0d5918a0fb2b6d73fb8bcf9db1c9f9cc745 (diff) |
* Added configuration pages for Dropbear, HTTPd, Mount Points
* Reorganized menu structure
* Prepare firmware upgrade mechanism
Diffstat (limited to 'src/ffluci/controller/admin')
-rw-r--r-- | src/ffluci/controller/admin/mesh.lua | 1 | ||||
-rw-r--r-- | src/ffluci/controller/admin/services.lua | 1 | ||||
-rw-r--r-- | src/ffluci/controller/admin/system.lua | 4 |
3 files changed, 5 insertions, 1 deletions
diff --git a/src/ffluci/controller/admin/mesh.lua b/src/ffluci/controller/admin/mesh.lua deleted file mode 100644 index 3dbe98cbb6..0000000000 --- a/src/ffluci/controller/admin/mesh.lua +++ /dev/null @@ -1 +0,0 @@ -module("ffluci.controller.admin.mesh", package.seeall)
\ No newline at end of file diff --git a/src/ffluci/controller/admin/services.lua b/src/ffluci/controller/admin/services.lua new file mode 100644 index 0000000000..42181212bd --- /dev/null +++ b/src/ffluci/controller/admin/services.lua @@ -0,0 +1 @@ +module("ffluci.controller.admin.services", package.seeall)
\ No newline at end of file diff --git a/src/ffluci/controller/admin/system.lua b/src/ffluci/controller/admin/system.lua index fc31ea22b5..102ce99b8d 100644 --- a/src/ffluci/controller/admin/system.lua +++ b/src/ffluci/controller/admin/system.lua @@ -173,4 +173,8 @@ function action_sshkeys() end ffluci.template.render("admin_system/sshkeys", {cnt=cnt, msg=err}) +end + +function action_upgrade() + -- To be implemented end
\ No newline at end of file |