summaryrefslogtreecommitdiffstats
path: root/compass/deploy/ansible/roles/neutron-compute/handlers/main.yml
blob: 36d779dd55266189d85a570f88cf1661da8b5f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: restart neutron-plugin-openvswitch-agent
  service: name=neutron-plugin-openvswitch-agent state=restarted enabled=yes
  when: "'opendaylight' not in {{ NEUTRON_MECHANISM_DRIVERS }}"

- name: restart neutron-l3-agent
  service: name=neutron-l3-agent state=restarted enabled=yes

- name: restart neutron-dhcp-agent
  service: name=neutron-dhcp-agent state=restarted enabled=yes

- name: restart neutron-metadata-agent
  service: name=neutron-metadata-agent state=restarted enabled=yes