mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
66 lines
2.1 KiB
Lua
66 lines
2.1 KiB
Lua
local m, s
|
|
|
|
local running=(luci.sys.call("pidof vlmcsd > /dev/null") == 0)
|
|
if running then
|
|
m = Map("vlmcsd", translate("vlmcsd config"), translate("<b><font color=green>Vlmcsd is running.</font></b>"))
|
|
else
|
|
m = Map("vlmcsd", translate("vlmcsd config"), translate("<b><font color=red>Vlmcsd is not running.</font></b>"))
|
|
end
|
|
|
|
|
|
s = m:section(TypedSection, "vlmcsd", "")
|
|
s.addremove = false
|
|
s.anonymous = true
|
|
|
|
s:tab("basic", translate("Basic Setting"))
|
|
enable = s:taboption("basic",Flag, "enabled", translate("Enable"))
|
|
enable.rmempty = false
|
|
function enable.cfgvalue(self, section)
|
|
return luci.sys.init.enabled("vlmcsd") and self.enabled or self.disabled
|
|
end
|
|
|
|
local hostname = luci.model.uci.cursor():get_first("system", "system", "hostname")
|
|
|
|
autoactivate = s:taboption("basic", Flag, "autoactivate", translate("Auto activate"))
|
|
autoactivate.rmempty = false
|
|
|
|
s:tab("config", translate("Config File"))
|
|
config = s:taboption("config", Value, "config", translate("configfile"), translate("This file is /etc/vlmcsd.ini."), "")
|
|
config.template = "cbi/tvalue"
|
|
config.rows = 13
|
|
config.wrap = "off"
|
|
|
|
function config.cfgvalue(self, section)
|
|
return nixio.fs.readfile("/etc/vlmcsd.ini")
|
|
end
|
|
|
|
function config.write(self, section, value)
|
|
value = value:gsub("\r\n?", "\n")
|
|
nixio.fs.writefile("/etc/vlmcsd.ini", value)
|
|
end
|
|
|
|
function enable.write(self, section, value)
|
|
if value == "1" then
|
|
luci.sys.call("/etc/init.d/vlmcsd enable >/dev/null")
|
|
luci.sys.call("/etc/init.d/vlmcsd start >/dev/null")
|
|
luci.sys.call("/etc/init.d/dnsmasq restart >/dev/null")
|
|
else
|
|
luci.sys.call("/etc/init.d/vlmcsd stop >/dev/null")
|
|
luci.sys.call("/etc/init.d/vlmcsd disable >/dev/null")
|
|
luci.sys.call("/etc/init.d/dnsmasq restart >/dev/null")
|
|
end
|
|
Flag.write(self, section, value)
|
|
end
|
|
|
|
function autoactivate.write(self, section, value)
|
|
if value == "1" then
|
|
luci.sys.call("sed -i '/srv-host=_vlmcs._tcp.lan/d' /etc/dnsmasq.conf")
|
|
luci.sys.call("echo srv-host=_vlmcs._tcp.lan,".. hostname ..".lan,1688,0,100 >> /etc/dnsmasq.conf")
|
|
else
|
|
luci.sys.call("sed -i '/srv-host=_vlmcs._tcp.lan/d' /etc/dnsmasq.conf")
|
|
end
|
|
Flag.write(self, section, value)
|
|
end
|
|
|
|
return m
|