Merge "NovaCompute: Call "fence_compute -o on" after evacuation"

This commit is contained in:
Jenkins 2016-02-15 14:37:45 +00:00 committed by Gerrit Code Review
commit f178723d40
1 changed files with 5 additions and 18 deletions

View File

@ -169,6 +169,8 @@ nova_start() {
ocf_log info "Pausing to give evacuations from ${NOVA_HOST} time to complete"
sleep ${OCF_RESKEY_evacuation_delay}
fence_compute ${fence_options} -o on -n ${NOVA_HOST}
attrd_updater -p -n evacuate -N ${NOVA_HOST} -D
else
ocf_log info "Waiting for pending evacuations from ${NOVA_HOST}"
while [ "x$state" != "xno" -a "x$state" != x ]; do
@ -178,6 +180,9 @@ nova_start() {
ocf_log info "Pausing to give evacuations from ${NOVA_HOST} time to complete"
sleep ${OCF_RESKEY_evacuation_delay}
fence_compute ${fence_options} -o on -n ${NOVA_HOST}
attrd_updater -p -n evacuate -N ${NOVA_HOST} -D
fi
export LIBGUESTFS_ATTACH_METHOD=appliance
@ -190,24 +195,6 @@ nova_start() {
rc=$?
done
## TEMPORARY disable call to "service enable" that seems to create
## issues and it is unnecessary since fence_compute doesn't disable
## the service
# if [ "x${OCF_RESKEY_domain}" != x ]; then
# export service_host="${NOVA_HOST}.${OCF_RESKEY_domain}"
# else
# export service_host="${NOVA_HOST}"
# fi
# python -c "import os; from novaclient import client as nova_client; nova = nova_client.Client('2', os.environ.get('OCF_RESKEY_username'), os.environ.get('OCF_RESKEY_password'), os.environ.get('OCF_RESKEY_tenant_name'), os.environ.get('OCF_RESKEY_auth_url')); nova.services.enable(os.environ.get('service_host'), 'nova-compute');"
# rc=$?
# if [ $rc != 0 ]; then
# ocf_exit_reason "nova.services.enable failed $rc"
# exit $OCF_NOT_RUNNING
# fi
return $OCF_SUCCESS
}