blob: 37b106a3f8a11e052724a1041038afd697021831 (
plain)
1
2
3
4
5
6
7
|
---
- name: restart nova service
service: name={{ item}} state=restarted enabled=yes
with_items: services | union(services_noarch)
- name: remove nova-sqlite-db
shell: rm /var/lib/nova/nova.sqlite || touch nova.sqlite.db.removed
|