summaryrefslogtreecommitdiffstats
path: root/compass/deploy/ansible/roles/keystone/tasks/keystone_config.yml
blob: 3203b26317fb2d40ead3ee162b1e9c0c0020b7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: keystone-manage db-sync
  shell: su -s /bin/sh -c "keystone-manage db_sync"
  register: result
  until: result.rc == 0
  retries: 5
  delay: 3

- name: place keystone init script under /opt/
  template: src=keystone_init dest=/opt/keystone_init mode=0744

- name: run keystone_init
  shell: /opt/keystone_init && touch keystone_init_complete || keystone_init_failed
  args:
    creates: keystone_init_complete