mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
33 lines
No EOL
817 B
Lua
33 lines
No EOL
817 B
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local protos_utils = require("protos_utils")
|
|
local rest_utils = require("rest_utils")
|
|
|
|
-- ##################################################
|
|
|
|
-- Checking root privileges
|
|
if not isAdministrator() then
|
|
rest_utils.answer(rest_utils.consts.err.not_granted)
|
|
return
|
|
end
|
|
|
|
-- ##################################################
|
|
|
|
local rc = rest_utils.consts.success.ok
|
|
local res = {}
|
|
|
|
local l7_proto = _GET["protocol_alias"]
|
|
local has_protos_file = protos_utils.hasProtosFile()
|
|
|
|
if has_protos_file then
|
|
protos_utils.deleteAppRules(l7_proto)
|
|
end
|
|
|
|
rest_utils.answer(rc, res) |