You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
420 B
Plaintext
14 lines
420 B
Plaintext
function plugin_agent_add_l2_agent_extension {
|
|
local l2_agent_extension=$1
|
|
if [[ -z "$L2_AGENT_EXTENSIONS" ]]; then
|
|
L2_AGENT_EXTENSIONS=$l2_agent_extension
|
|
elif [[ ! ,${L2_AGENT_EXTENSIONS}, =~ ,${l2_agent_extension}, ]]; then
|
|
L2_AGENT_EXTENSIONS+=",$l2_agent_extension"
|
|
fi
|
|
}
|
|
|
|
|
|
function configure_l2_agent {
|
|
iniset /$NEUTRON_CORE_PLUGIN_CONF agent extensions "$L2_AGENT_EXTENSIONS"
|
|
}
|