mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
12 lines
No EOL
261 B
Text
12 lines
No EOL
261 B
Text
@load ./main
|
|
@load ./plugins
|
|
|
|
# The cluster framework must be loaded first.
|
|
@load base/frameworks/cluster
|
|
|
|
# Load either the cluster support script or the non-cluster support script.
|
|
@if ( Cluster::is_enabled() )
|
|
@load ./cluster
|
|
@else
|
|
@load ./non-cluster
|
|
@endif |