mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 03:45:26 +00:00
14 lines
No EOL
302 B
Lua
14 lines
No EOL
302 B
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
|
|
--
|
|
-- This scripts create daily backup of the ntopng configuration
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/system_config/?.lua;" .. package.path
|
|
|
|
local backup_config = require("backup_config")
|
|
|
|
backup_config.save_backup() |