blob: d7b1bc4837edd358e684116673f4298588cf8778 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
local M = {}
local posix = require 'posix'
local json = require 'cjson'
M.config = "/etc/aaudit/aaudit.json"
function M.readfile(fn)
local F = io.open(fn, "r")
if F == nil then return nil end
local ret = F:read("*all")
F:close()
return ret
end
function M.readconfig(fn)
fn = fn or M.config
local success, res = pcall(json.decode, M.readfile(fn))
if not success then io.stderr:write(("Error reading %s: %s\n"):format(fn, res)) end
return res
end
function M.writefile(content, fn)
assert(io.open(fn, "w")):write(content):close()
end
function M.writeconfig(config, fn)
M.writefile(json.encode(config), fn or M.config)
end
return M
|