mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 12:15:15 +00:00
15 lines
426 B
Lua
15 lines
426 B
Lua
--
|
|
-- (C) 2013-17 - ntop.org
|
|
--
|
|
|
|
|
|
local dirs = ntop.getDirs()
|
|
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/pro/scripts/callbacks/system/?.lua;" .. package.path
|
|
|
|
if ntop.isnEdge() then
|
|
package.path = dirs.installdir .. "/pro/scripts/lua/nedge/modules/?.lua;" .. package.path
|
|
local ping_utils = require('ping_utils')
|
|
ping_utils.check_status()
|
|
end
|