aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/nova-controller/handlers/main.yml
blob: 0f922941f72ecb6008e25f0e77cc2a397e2cd8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- name: restart nova-api
  service: name=nova-api state=restarted enabled=yes

- name: restart nova-cert
  service: name=nova-cert state=restarted enabled=yes

- name: restart nova-consoleauth
  service: name=nova-consoleauth state=restarted enabled=yes

- name: restart nova-scheduler
  service: name=nova-scheduler state=restarted enabled=yes

- name: restart nova-conductor
  service: name=nova-conductor state=restarted enabled=yes

- name: restart nova-novncproxy
  service: name=nova-novncproxy state=restarted enabled=yes

- name: remove nova-sqlite-db
  shell: rm /var/lib/nova/nova.sqlite || touch nova.sqlite.db.removed