* libs/web: Switched from HTTP-Basic-Auth to Session-Auth
[project/luci.git] / modules / admin-core / luasrc / controller / admin / services.lua
index bebbb0e..59defbb 100644 (file)
@@ -1,3 +1,16 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+]]--
 module("luci.controller.admin.services", package.seeall)
 
 function index()
@@ -11,22 +24,16 @@ function index()
        
        local page  = node("admin", "services", "httpd")
        page.target = cbi("admin_services/httpd")
-       page.title  = "HTTP-Server"
+       page.title  = "Busybox HTTPd"
        page.order  = 10
        
        local page  = node("admin", "services", "dropbear")
        page.target = cbi("admin_services/dropbear")
-       page.title  = "SSH-Server"
+       page.title  = "Dropbear SSHd"
        page.order  = 20
        
        local page  = node("admin", "services", "dnsmasq")
        page.target = cbi("admin_services/dnsmasq")
        page.title  = "Dnsmasq"
        page.order  = 30
-       
-       if luci.fs.isfile("/etc/config/olsr") then
-               local page  = node("admin", "services", "olsr")
-               page.target = cbi("admin_services/olsrd")
-               page.title  = "OLSR"
-       end
 end
\ No newline at end of file