Merge "Remove the reload from the cinder playbook"

This commit is contained in:
Jenkins 2017-08-15 00:48:34 +00:00 committed by Gerrit Code Review
commit c0e4aadba5

View File

@ -155,13 +155,13 @@
- name: Execute cinder service reload
include: common-tasks/restart-service.yml
vars:
service_name: "{{ item }}"
service_action: "reloaded"
service_name: "{{ item.name }}"
service_action: "{{ item.action }}"
service_fact: "cinder"
with_items:
- cinder-backup
- cinder-volume
- cinder-scheduler
- { name: "cinder-backup", action: "restarted" }
- { name: "cinder-volume", action: "restarted" }
- { name: "cinder-scheduler", action: "restarted" }
when:
- "cinder_all_software_updated | bool"
- "ansible_local['openstack_ansible']['cinder']['need_service_restart'] | bool"