mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
17 lines
417 B
Lua
17 lines
417 B
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
local remote_assistance = require "remote_assistance"
|
|
local lists_utils = require "lists_utils"
|
|
|
|
-- ########################################################
|
|
|
|
remote_assistance.checkExpiration()
|
|
lists_utils.downloadLists()
|
|
|
|
-- Run hourly scripts
|
|
ntop.checkSystemScriptsHour()
|