aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml
blob: 24981e9cbe133238f1e809663ae1254294292bd7 (plain)
1
2
3
4
5
6
7
8
9
---
- 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)