15 lines
450 B
Plaintext
15 lines
450 B
Plaintext
#
|
|
# Sets ZEEKPATH to either the installed policy scripts (if
|
|
# use_installed_policies is 1), or the user-provided originals
|
|
# (otherwise).
|
|
#
|
|
# Should be sourced.
|
|
|
|
ZEEKPATH=${tmp_node_dir}:${policydirsiteinstallauto}:${policydir}:${policydir}/policy:${policydir}/site:${policydir}/builtin-plugins
|
|
|
|
if [ "$use_installed_policies" = "1" ]; then
|
|
export ZEEKPATH=${policydirsiteinstall}:$ZEEKPATH
|
|
else
|
|
export ZEEKPATH=${sitepolicypath}:$ZEEKPATH
|
|
fi
|