Merge "Switch item notation to jinja format"

This commit is contained in:
Jenkins 2017-02-03 00:38:48 +00:00 committed by Gerrit Code Review
commit 9bb44e0a32
1 changed files with 2 additions and 2 deletions

View File

@ -68,14 +68,14 @@ outputs:
command: ceph osd set noscrub
- name: Stop Ceph OSD
tags: step1
service: name=ceph-osd@$item state=stopped
service: name=ceph-osd@{{ item }} state=stopped
with_items: "{{osd_ids.stdout.strip().split()}}"
- name: Update ceph OSD packages
tags: step1
yum: name=ceph-osd state=latest
- name: Start ceph-osd service
tags: step1
service: name=ceph-osd@$item state=started
service: name=ceph-osd@{{ item }} state=started
with_items: "{{osd_ids.stdout.strip().split()}}"
- name: ceph osd unset noout
tags: step1