Add missing quotes in shell task.

Missing quotes arose as an error in the
minor updates CI job. Adding them.

Change-Id: Ia4aa12411d31ca085480fb126c5c2d60950cfee7
Closes-Bug: #1790786
This commit is contained in:
Jose Luis Franco Arza 2018-09-05 09:00:35 +02:00
parent 4f89546529
commit d7e0e8f88f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
- name: can docker be updated
shell: {{ registry_pkg_manager }} check-update docker
shell: "{{ registry_pkg_manager }} check-update docker"
register: docker_check_update
failed_when: docker_check_update.rc not in [0, 100]
changed_when: docker_check_update.rc == 100