62351faa9d44a6b3801b175cf882d58056d65ee5
[genesis.git] / compass / deploy / ansible / roles / nova-controller / tasks / nova_config.yml
1 ---
2 - name: nova db sync
3   command: su -s /bin/sh -c "nova-manage db sync" nova
4   register: result
5   until: result.rc == 0
6   retries: 5
7   delay: 3
8   notify:
9     - restart nova-api
10     - restart nova-cert
11     - restart nova-consoleauth
12     - restart nova-scheduler
13     - restart nova-conductor
14     - restart nova-novncproxy
15
16 - meta: flush_handlers