ntopng/scripts/lua/modules/smcroute_service_utils.lua

48 lines
1.3 KiB
Lua

--
-- (C) 2013-24 - ntop.org
--
local sys_utils = require "sys_utils"
local service_name = "smcroute"
local redis_key = "ntopng.nedge.smcroute.enabled"
local smcroute_service_utils = {}
-- This function is used to check if the smcroute status is up
-- and if not, restart it.
function smcroute_service_utils.checkRestartSmcrouteService()
if ntop.isnEdge() then
if (ntop.getCache(redis_key) or '0') == '1' then
if not sys_utils.isActiveService(service_name) then
sys_utils.restartService(service_name)
end
end
end
end
-- ###############################################################
-- This function is used to check if the smcroute status is up
-- and if not, restart it.
function smcroute_service_utils.startSmcrouteService()
if ntop.isnEdge() then
ntop.setCache(redis_key, '1')
sys_utils.enableService(service_name)
sys_utils.restartService(service_name)
end
end
-- ###############################################################
-- This function is used to check if the smcroute status is up
-- and if not, restart it.
function smcroute_service_utils.stopSmcrouteService()
if ntop.isnEdge() then
ntop.setCache(redis_key, '0')
sys_utils.disableService(service_name)
sys_utils.stopService(service_name)
end
end
return smcroute_service_utils