mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
21 lines
344 B
Lua
21 lines
344 B
Lua
--
|
|
-- (C) 2017-21 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require("dkjson")
|
|
|
|
sendHTTPHeader('application/json')
|
|
|
|
if not haveAdminPrivileges() then
|
|
return
|
|
end
|
|
|
|
ntop.serviceRestart()
|
|
|
|
res = { }
|
|
|
|
print(json.encode(res, nil, 1))
|