ntopng/scripts/lua/admin/service_restart.lua
2021-01-02 12:08:23 +01:00

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))