Extend Supervisor Node config with list of custom scripts

This commit is contained in:
Jon Siwek 2020-01-08 14:52:46 -08:00
parent 297317b232
commit 00cd04b0ae
4 changed files with 25 additions and 0 deletions

View file

@ -961,6 +961,9 @@ int main(int argc, char** argv)
exit(1);
}
}
for ( const auto& s : zeek::supervised_node->scripts )
options.scripts_to_load.emplace_back(s);
}
double time_start = current_time(true);