36891dc143
After an unstack.sh several neutron services are left running. This change tries to do a better (but not always successful) job of stopping neutron agents. stop_process does its own checking to see if a service is enabled so we don't need to check before calling. Change-Id: I8becbe9db56121cbc619a6d156b18f6c6d31a6e7
31 lines
782 B
Plaintext
31 lines
782 B
Plaintext
# Neutron metering plugin
|
|
# ---------------------------
|
|
|
|
# Save trace setting
|
|
METER_XTRACE=$(set +o | grep xtrace)
|
|
set +o xtrace
|
|
|
|
|
|
AGENT_METERING_BINARY="$NEUTRON_BIN_DIR/neutron-metering-agent"
|
|
METERING_PLUGIN="neutron.services.metering.metering_plugin.MeteringPlugin"
|
|
|
|
function neutron_agent_metering_configure_common {
|
|
_neutron_service_plugin_class_add $METERING_PLUGIN
|
|
}
|
|
|
|
function neutron_agent_metering_configure_agent {
|
|
METERING_AGENT_CONF_PATH=/etc/neutron/services/metering
|
|
mkdir -p $METERING_AGENT_CONF_PATH
|
|
|
|
METERING_AGENT_CONF_FILENAME="$METERING_AGENT_CONF_PATH/metering_agent.ini"
|
|
|
|
cp $NEUTRON_DIR/etc/metering_agent.ini $METERING_AGENT_CONF_FILENAME
|
|
}
|
|
|
|
function neutron_metering_stop {
|
|
stop_process q-metering
|
|
}
|
|
|
|
# Restore xtrace
|
|
$METER_XTRACE
|