aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_config.yml
blob: c01ad4f6ce0bf114be1e5e5326cfb5f66d971977 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: upload cinder conf
  template: src=cinder.conf dest=/etc/cinder/cinder.conf

- name: sync cinder db
  #cinder_manage: action=dbsync
  shell: su -s /bin/sh -c 'cinder-manage db sync' cinder
  ignore_errors: true
  changed_when: true
  notify:
    - restart cinder control serveice