blob: 66bb5f067c1e28b5d1164085bdf37f85e554c926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: install cinder packages
action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
with_items: packages | union(packages_noarch)
- name: generate common cinder service list
lineinfile: dest=/opt/service create=yes line='{{ item }}'
with_items: services | union(services_noarch)
- name: upload cinder conf
template: src=cinder.conf dest=/etc/cinder/cinder.conf
notify:
- restart cinder control serveice
|