Update On Tue Nov 26 19:40:14 CET 2024

This commit is contained in:
github-action[bot]
2024-11-26 19:40:15 +01:00
parent 109b874dd4
commit c0557b1079
110 changed files with 1038 additions and 1470 deletions
@@ -254,11 +254,14 @@ local file_vpslist = TMP_ACL_PATH .. "/vpslist"
if not is_file_nonzero(file_vpslist) then
local f_out = io.open(file_vpslist, "w")
uci:foreach(appname, "nodes", function(t)
local address = t.address
if address == "engage.cloudflareclient.com" then return end
if datatypes.hostname(address) then
f_out:write(address .. "\n")
local function process_address(address)
if address == "engage.cloudflareclient.com" then return end
if datatypes.hostname(address) then
f_out:write(address .. "\n")
end
end
process_address(t.address)
process_address(t.download_address)
end)
f_out:close()
end