mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This is a fairly straightforward change. Previously, users had no control over whether this script was loaded. By relocating it to policy, users can now choose whether or not this is necessary functionality without modifying core Bro scripts.
21 lines
461 B
Text
21 lines
461 B
Text
@load ./main
|
|
@load ./weird
|
|
|
|
# There should be no overhead imposed by loading notice actions so we
|
|
# load them all.
|
|
@load ./actions/drop
|
|
@load ./actions/email_admin
|
|
@load ./actions/page
|
|
@load ./actions/add-geodata
|
|
|
|
# The cluster framework must be loaded first.
|
|
@load base/frameworks/cluster
|
|
|
|
@if ( Cluster::is_enabled() )
|
|
@load ./cluster
|
|
@else
|
|
@load ./non-cluster
|
|
@endif
|
|
|
|
# Load here so that it can check whether clustering is enabled.
|
|
@load ./actions/pp-alarms
|