blob: 686ce1f5137acbb3ab01d55f9c7e631fa79eeea1 (
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
shell: echo {{ item }} >> /opt/service
with_items: services | union(services_noarch)
- name: upload cinder conf
template: src=cinder.conf dest=/etc/cinder/cinder.conf
notify:
- restart cinder control serveice
|