summaryrefslogtreecommitdiffstats
path: root/dnscache-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dnscache-model.lua')
-rw-r--r--dnscache-model.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/dnscache-model.lua b/dnscache-model.lua
index 12bd5f7..705409c 100644
--- a/dnscache-model.lua
+++ b/dnscache-model.lua
@@ -62,7 +62,7 @@ end
function mymodule.get_startstop(self, clientdata)
return modelfunctions.get_startstop(processname)
end
-
+
function mymodule.startstop_service(self, startstop, action)
return modelfunctions.startstop_service(startstop, action)
end
@@ -96,7 +96,7 @@ function mymodule.setconfig(self, config)
else
file = format.update_ini_file(file,"","FORWARDONLY","")
end
- fs.write_file(configfile, file)
+ fs.write_file(configfile, file)
else
config.errtxt = "Failed to set config"
end
@@ -142,7 +142,7 @@ function mymodule.setIPs(self, iplist)
end
if not iplist.errtxt then
local currentIPlist = mymodule.getIPs()
- for i,name in ipairs(currentIPlist.value.iplist.value) do
+ for i,name in ipairs(currentIPlist.value.iplist.value) do
if reverseIPs[name] then
reverseIPs[name] = nil
else
@@ -215,7 +215,7 @@ end
function mymodule.setDomain(self, domain)
local success, domain = validatedomain(domain)
if success then
- fs.write_file(baseurl.."servers/"..domain.value.domain.value,
+ fs.write_file(baseurl.."servers/"..domain.value.domain.value,
table.concat(domain.value.iplist.value, "\n") )
else
domain.errtxt = "Failed to save domain"