Remove jinja2 delimiters from when

This patch removes Jinja2 delimiters from when clauses and fixes the
capitalization of task names to match the other tasks in the file.

Closes-Bug: 1735785
Change-Id: I16334a11c551026c593b1872a44ed68f786719a5
(cherry picked from commit 6cd15acb26)
This commit is contained in:
Major Hayden 2017-12-01 10:24:04 -06:00
parent 65a330b0bc
commit 05d5e9fb78
1 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@
- "{{ swift.storage_policies }}"
- [{ type: 'object', port: "{{ swift_object_port }}" }]
- name: "build rings for account/container from contents files"
- name: "Build rings for account/container from contents files"
command: "/etc/swift/scripts/swift_rings.py -f /etc/swift/scripts/{{ item[0] }}.contents{% if item[1] %} -r {{ item[1] }}{% endif %}{{ (swift_pretend_min_part_hours_passed | bool) | ternary(' -p', '')}}"
with_nested:
- [ 'account', 'container' ]
@ -51,12 +51,12 @@
register: swift_rings_create
become: yes
become_user: "{{ swift_system_user_name }}"
changed_when: "{{ swift_rings_create.rc not in [1, 2, 3] }}"
failed_when: "{{ swift_rings_create.rc in [1, 2] }}"
changed_when: "swift_rings_create.rc not in [1, 2, 3]"
failed_when: "swift_rings_create.rc in [1, 2]"
args:
chdir: /etc/swift/ring_build_files/
- name: "build rings for storage policies from contents files"
- name: "Build rings for storage policies from contents files"
command: "/etc/swift/scripts/swift_rings.py -f /etc/swift/scripts/object-{{ item[0].policy.index }}.contents{% if item[1] %} -r {{ item[1] }}{% endif %}{{ (swift_pretend_min_part_hours_passed | bool) | ternary(' -p', '')}}"
with_nested:
- "{{ swift.storage_policies }}"
@ -64,7 +64,7 @@
register: swift_object_rings_create
become: yes
become_user: "{{ swift_system_user_name }}"
changed_when: "{{ swift_object_rings_create.rc not in [1, 2, 3] }}"
failed_when: "{{ swift_object_rings_create.rc in [1, 2] }}"
changed_when: "swift_object_rings_create.rc not in [1, 2, 3]"
failed_when: "swift_object_rings_create.rc in [1, 2]"
args:
chdir: /etc/swift/ring_build_files/