aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/cinder-volume/tasks/main.yml
blob: a258a0cf9d73d8cff6cbd66f3cc530de96eb2ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: install cinder-volume and lvm2 packages
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  with_items: packages | union(packages_noarch)

- name: generate cinder volume service list
  shell: echo {{ item }} >> /opt/service
  with_items: services | union(services_noarch)

- name: check if physical device exists
  stat: path={{ physical_device }}
  register: status

- name: load loop.yml
  include: loop.yml
  when: status.stat.isblk == False

- name: load real.yml
  include: real.yml
  when: status.stat.isblk == True

- name: upload cinder-volume configuration
  template: src=cinder.conf dest=/etc/cinder/cinder.conf
            backup=yes
  notify:
     - restart cinder-volume services