Merge "Fix issue with when statement in docker-registry.yaml."

This commit is contained in:
Zuul 2018-12-19 23:57:33 +00:00 committed by Gerrit Code Review
commit d074cff144
1 changed files with 1 additions and 2 deletions

View File

@ -67,11 +67,10 @@ outputs:
upgrade_tasks:
- block:
- name: Install docker packages on upgrade if missing
when: step|int == 3
package: name=docker-distribution state=latest
- set_fact: *docker_vars
- name: Reconfigure Docker if needed
include_role:
name: container-registry
tasks_from: docker
when: step|int = 3
when: step|int == 3