mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
13 lines
308 B
Lua
13 lines
308 B
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
if ntop.isPro() then
|
|
package.path = dirs.installdir .. "/pro/scripts/callbacks/system/?.lua;" .. package.path
|
|
require "5min"
|
|
end
|
|
|
|
ntop.checkSystemScripts5Min()
|