check if file exits before write it
This commit is contained in:
parent
7cfe7d928d
commit
48737b82a1
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user