Merge "Fix skipping glance check if deploy images not defined"

This commit is contained in:
Zuul 2018-12-17 11:30:42 +00:00 committed by Gerrit Code Review
commit 254cd60fff
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@
- "{{ ironic_deploy_ramdisk }}"
# ironic_deploy_kernel/ramdisk default to none. We don't need to know them
# for enrolment to continue.
when: item is not none
when:
- item is not none
- item != ""
register: deploy_image_ids
changed_when: false