Fix dnsmasq directive (#936)

This commit is contained in:
Tim Wilkinson 2023-09-18 17:03:34 -07:00 committed by GitHub
parent 11f7fe6731
commit f6ffa4acb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ if f then
if not host:match("%.local%.mesh$") then if not host:match("%.local%.mesh$") then
host = host .. ".local.mesh" host = host .. ".local.mesh"
end end
subdomains = subdomains .. "server=/" .. host .. "/" .. ip .. "\n" subdomains = subdomains .. "address=/." .. host .. "/" .. ip .. "\n"
else else
data = data .. line .. "\n" data = data .. line .. "\n"
end end