mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
25 lines
823 B
Text
25 lines
823 B
Text
##! This module collects properties of the Zeek installation.
|
|
##!
|
|
##! Directories are absolute and guaranteed to exist. Not all are necessarily in
|
|
##! operational use -- this depends on how you're running Zeek (as a standalone
|
|
##! process or clusterized, via zeekctl or the Management framework, etc).
|
|
##!
|
|
##! For details about Zeek's version, see the :zeek:see:`Version` module.
|
|
module Installation;
|
|
|
|
export {
|
|
## Zeek installation root directory.
|
|
const root_dir = "@ZEEK_ROOT_DIR@";
|
|
|
|
## The installation's configuration directory.
|
|
const etc_dir = "@ZEEK_ETC_INSTALL_DIR@";
|
|
|
|
## The installation's log directory.
|
|
const log_dir = "@ZEEK_LOG_DIR@";
|
|
|
|
## The installation's spool directory.
|
|
const spool_dir = "@ZEEK_SPOOL_DIR@";
|
|
|
|
## The installation's variable-state directory.
|
|
const state_dir = "@ZEEK_STATE_DIR@";
|
|
}
|