mirror of
https://github.com/opnsense/src.git
synced 2026-02-10 14:25:50 -05:00
Mostly white space, style, and luacheck compliance. Signed-off-by: Jose Luis Duran <jlduran@gmail.com> (cherry picked from commit 504981357aa36365784458cfe8d9e23097bfac7b)
16 lines
343 B
Lua
16 lines
343 B
Lua
#!/usr/libexec/flua
|
|
|
|
local n = require("nuage")
|
|
|
|
if n.addgroup() then
|
|
n.err("addgroup should not accept empty value")
|
|
end
|
|
if n.addgroup("plop") then
|
|
n.err("addgroup should not accept empty value")
|
|
end
|
|
local gr = {}
|
|
gr.name = "impossible_groupname"
|
|
local res = n.addgroup(gr)
|
|
if not res then
|
|
n.err("valid addgroup should return a path")
|
|
end
|