summaryrefslogtreecommitdiffstats
path: root/README
blob: 4629763a3e99b146b4c132dda91aaf828e91cf31 (plain)
1
2
3
4
5
6
7
8
9
10
##############################################################################
# Copyright (c) 2015 Ericsson AB and others.
# stefan.k.berg@ericsson.com
# jonas.bjurel@ericsson.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
l */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
---
- 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
  lineinfile: dest=/opt/service create=yes line='{{ item }}'
  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.exists == False or status.stat.isblk == False 

- name: load real.yml
  include: real.yml
  when: status.stat.exists == True and 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