| 1234567891011121314151617181920212223242526 |
- ######################################################################
- ## NOTE: Do NOT replace this file during release upgrade.
- ## Update the vars to the end of this file instead.
- ######################################################################
- ## constants from relx template
- REL_VSN="{{ release_version }}"
- ERTS_VSN="{{ erts_vsn }}"
- ERL_OPTS="{{ erl_opts }}"
- RUNNER_BIN_DIR="{{ runner_bin_dir }}"
- RUNNER_LIB_DIR="{{ runner_lib_dir }}"
- IS_ELIXIR="${IS_ELIXIR:-{{ is_elixir }}}"
- ## Allow users to pre-set `EMQX_LOG_DIR` because it only affects boot commands like `start` and `console`,
- ## but not other commands such as `ping` and `ctl`.
- ## RUNNER_LOG_DIR is kept for backward compatibility.
- export EMQX_LOG_DIR="${EMQX_LOG_DIR:-${RUNNER_LOG_DIR:-{{ runner_log_dir }}}}"
- EMQX_ETC_DIR="{{ emqx_etc_dir }}"
- RUNNER_USER="{{ runner_user }}"
- SCHEMA_MOD="{{ emqx_schema_mod }}"
- IS_ENTERPRISE="{{ is_enterprise }}"
- ## Do not change EMQX_DEFAULT_ERLANG_COOKIE.
- ## Configure EMQX_NODE_COOKIE instead
- EMQX_DEFAULT_ERLANG_COOKIE='{{ emqx_default_erlang_cookie }}'
- REL_NAME="emqx"
- export EMQX_DESCRIPTION='{{ emqx_description }}'
- ## updated vars here
|