ntopng/scripts/callbacks/daily/system/blog_posts.lua
GabrieleDeri 895d3bd65f
Added uptime, footer, update banner (#10507)
* Added uptime, footer, update banner

* Update dist
2026-06-29 09:58:39 +02:00

14 lines
365 B
Lua

--
-- (C) 2024-26 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
-- Refresh ntop blog posts daily (startup.lua also fetches them at boot)
if not (ntop.isnEdge and ntop.isnEdge()) then
local blog_utils = require("blog_utils")
blog_utils.fetchLatestPosts()
end