mod - auth_rx : check if file exits before write

* backported from 48737b82a1
master
Герхард PICCORO Lenz McKAY 2022-02-14 16:23:58 -04:00
parent a7f5226332
commit f1889bbcfc
1 changed files with 1 additions and 1 deletions

View File

@ -486,10 +486,10 @@ function AuthFilter( path, name, debug )
local file = io.open( path .. "/" .. name, "r" )
if not file then
file = io.open( path .. "/" .. name, "w+")
file:write("pass now")
if not file then
error( "The specified ruleset file does not exist." )
end
file:write("pass now")
file:close( file )
file = io.open( path .. "/" .. name, "r" )
end