Merge "Fix container client variable name"

This commit is contained in:
Zuul 2020-05-11 18:57:22 +00:00 committed by Gerrit Code Review
commit a4882cc2ea
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
- name: Set container_client fact
set_fact:
container_client: |-
{% set container_cli = 'podman' %}
{% set container_client = 'podman' %}
{% if check_docker_cli.stat.exists|bool %}
{% set container_client = 'docker' %}
{% endif %}