luci: move auto set dnsmasq option to basic settings
This commit is contained in:
@@ -56,6 +56,14 @@ o.default = 53
|
|||||||
o.datatype = "port"
|
o.datatype = "port"
|
||||||
o.rempty = false
|
o.rempty = false
|
||||||
|
|
||||||
|
-- Automatically Set Dnsmasq
|
||||||
|
o = s:taboption("settings", Flag, "auto_set_dnsmasq", translate("Automatically Set Dnsmasq"), translate("Automatically set as upstream of dnsmasq when port changes."))
|
||||||
|
o.rmempty = false
|
||||||
|
o.default = o.enabled
|
||||||
|
o.cfgvalue = function(...)
|
||||||
|
return Flag.cfgvalue(...) or "0"
|
||||||
|
end
|
||||||
|
|
||||||
---- Speed check mode;
|
---- Speed check mode;
|
||||||
o = s:taboption("advanced", Value, "speed_check_mode", translate("Speed Check Mode"), translate("Smartdns speed check mode."));
|
o = s:taboption("advanced", Value, "speed_check_mode", translate("Speed Check Mode"), translate("Smartdns speed check mode."));
|
||||||
o.rmempty = true;
|
o.rmempty = true;
|
||||||
@@ -187,14 +195,6 @@ o.cfgvalue = function(...)
|
|||||||
return Flag.cfgvalue(...) or "1"
|
return Flag.cfgvalue(...) or "1"
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Automatically Set Dnsmasq
|
|
||||||
o = s:taboption("advanced", Flag, "auto_set_dnsmasq", translate("Automatically Set Dnsmasq"), translate("Automatically set as upstream of dnsmasq when port changes."))
|
|
||||||
o.rmempty = false
|
|
||||||
o.default = o.enabled
|
|
||||||
o.cfgvalue = function(...)
|
|
||||||
return Flag.cfgvalue(...) or "0"
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Force AAAA SOA
|
-- Force AAAA SOA
|
||||||
o = s:taboption("advanced", Flag, "force_aaaa_soa", translate("Force AAAA SOA"), translate("Force AAAA SOA."))
|
o = s:taboption("advanced", Flag, "force_aaaa_soa", translate("Force AAAA SOA"), translate("Force AAAA SOA."))
|
||||||
o.rmempty = false
|
o.rmempty = false
|
||||||
|
|||||||
@@ -155,6 +155,11 @@ return view.extend({
|
|||||||
o.default = 53;
|
o.default = 53;
|
||||||
o.datatype = "port";
|
o.datatype = "port";
|
||||||
o.rempty = false;
|
o.rempty = false;
|
||||||
|
|
||||||
|
// auto-conf-dnsmasq;
|
||||||
|
o = s.taboption("settings", form.Flag, "auto_set_dnsmasq", _("Automatically Set Dnsmasq"), _("Automatically set as upstream of dnsmasq when port changes."));
|
||||||
|
o.rmempty = false;
|
||||||
|
o.default = o.enabled;
|
||||||
|
|
||||||
///////////////////////////////////////
|
///////////////////////////////////////
|
||||||
// advanced settings;
|
// advanced settings;
|
||||||
@@ -262,11 +267,6 @@ return view.extend({
|
|||||||
o.rmempty = false;
|
o.rmempty = false;
|
||||||
o.default = o.enabled;
|
o.default = o.enabled;
|
||||||
|
|
||||||
// auto-conf-dnsmasq;
|
|
||||||
o = s.taboption("advanced", form.Flag, "auto_set_dnsmasq", _("Automatically Set Dnsmasq"), _("Automatically set as upstream of dnsmasq when port changes."));
|
|
||||||
o.rmempty = false;
|
|
||||||
o.default = o.enabled;
|
|
||||||
|
|
||||||
// Force AAAA SOA
|
// Force AAAA SOA
|
||||||
o = s.taboption("advanced", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA."));
|
o = s.taboption("advanced", form.Flag, "force_aaaa_soa", _("Force AAAA SOA"), _("Force AAAA SOA."));
|
||||||
o.rmempty = false;
|
o.rmempty = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user