mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
parent
4779f80fa8
commit
aca088ea13
14 changed files with 194 additions and 87 deletions
|
|
@ -1078,7 +1078,7 @@ function user_scripts.getTargetConfig(configsets, subdir, target)
|
|||
return({})
|
||||
end
|
||||
|
||||
return(conf.config[subdir] or {})
|
||||
return conf.config[subdir] or {}, conf.id
|
||||
end
|
||||
|
||||
-- ##############################################
|
||||
|
|
@ -1090,7 +1090,7 @@ function user_scripts.getDefaultConfig(configsets, subdir)
|
|||
return({})
|
||||
end
|
||||
|
||||
return(conf.config[subdir] or {})
|
||||
return conf.config[subdir] or {}, conf.id
|
||||
end
|
||||
|
||||
-- ##############################################
|
||||
|
|
@ -1119,7 +1119,7 @@ function user_scripts.getHostTargetConfigset(configsets, subdir, ip_target)
|
|||
return({})
|
||||
end
|
||||
|
||||
return(conf.config[subdir] or {})
|
||||
return conf.config[subdir] or {}, conf.id
|
||||
end
|
||||
|
||||
-- ##############################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue