2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
-- Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2011-08-12 13:16:27 +00:00
|
|
|
|
2008-08-11 16:05:50 +00:00
|
|
|
module("luci.controller.samba", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2009-07-19 00:24:58 +00:00
|
|
|
if not nixio.fs.access("/etc/config/samba") then
|
2008-08-11 16:05:50 +00:00
|
|
|
return
|
|
|
|
end
|
2011-08-12 13:16:27 +00:00
|
|
|
|
|
|
|
local page
|
|
|
|
|
|
|
|
page = entry({"admin", "services", "samba"}, cbi("samba"), _("Network Shares"))
|
2008-08-11 16:05:50 +00:00
|
|
|
page.dependent = true
|
2011-08-12 13:16:27 +00:00
|
|
|
end
|