diff options
Diffstat (limited to 'deploy/adapters/ansible/roles/cinder-controller/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml b/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml index d41094da..0a0d57f3 100644 --- a/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml +++ b/deploy/adapters/ansible/roles/cinder-controller/tasks/cinder_install.yml @@ -16,7 +16,7 @@ - name: install cinder packages action: "{{ ansible_pkg_mgr }} name={{ item }} state=present" - with_items: packages | union(packages_noarch) + with_items: "{{ packages | union(packages_noarch) }}" - name: enable auto start file: @@ -26,7 +26,7 @@ - name: generate common cinder service list lineinfile: dest=/opt/service create=yes line='{{ item }}' - with_items: services | union(services_noarch) + with_items: "{{ services | union(services_noarch) }}" - name: upload cinder conf template: src=cinder.conf dest=/etc/cinder/cinder.conf |