diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-08-04 20:47:16 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-08-04 20:47:16 +0000 |
commit | b41d110b3abda980c422d4f3f8fb6c1fc958eec8 (patch) | |
tree | 4e6faf2c186000a32b3f70a1c83fd2e197e83461 /extraconfig | |
parent | efad331d0ddae9355c1e129db1d371c86bc85626 (diff) | |
parent | 0be476483baca4483bbff74a463332b21ffdf31e (diff) |
Merge "Stop and disable openstack-nova-compute service on compute nodes"
Diffstat (limited to 'extraconfig')
-rw-r--r-- | extraconfig/tasks/tripleo_upgrade_node.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extraconfig/tasks/tripleo_upgrade_node.sh b/extraconfig/tasks/tripleo_upgrade_node.sh index af49d49d..baf838e4 100644 --- a/extraconfig/tasks/tripleo_upgrade_node.sh +++ b/extraconfig/tasks/tripleo_upgrade_node.sh @@ -55,6 +55,9 @@ if [[ -n \$NOVA_COMPUTE ]]; then log_debug "Stop and disable libvirtd service for upgrade to containers" systemctl stop libvirtd systemctl disable libvirtd + log_debug "Stop and disable openstack-nova-compute for upgrade to containers" + systemctl stop openstack-nova-compute + systemctl disable openstack-nova-compute fi # Apply puppet manifest to converge just right after the ${ROLE} upgrade |