diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-09-27 10:56:37 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-09-27 10:57:00 +0200 |
commit | 1f2325aa3d07679f842dc106a3cb2048564b9539 (patch) | |
tree | db5be9ca729a56322b053e0c0ed8de09c7f682d9 /roles/docker/tasks/main.yml | |
parent | c2c4ba7ec62d4dfd87d746d20991e10f2bd1bddf (diff) | |
download | openshift-1f2325aa3d07679f842dc106a3cb2048564b9539.tar.gz openshift-1f2325aa3d07679f842dc106a3cb2048564b9539.tar.bz2 openshift-1f2325aa3d07679f842dc106a3cb2048564b9539.tar.xz openshift-1f2325aa3d07679f842dc106a3cb2048564b9539.zip |
docker: fix some tox warnings
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'roles/docker/tasks/main.yml')
-rw-r--r-- | roles/docker/tasks/main.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml index 208ece011..dae17c3ce 100644 --- a/roles/docker/tasks/main.yml +++ b/roles/docker/tasks/main.yml @@ -21,17 +21,17 @@ - name: Use Package Docker if Requested include: package_docker.yml when: - - not l_use_system_container - - not l_use_crio_only + - not l_use_system_container + - not l_use_crio_only - name: Use System Container Docker if Requested include: systemcontainer_docker.yml when: - - l_use_system_container - - not l_use_crio_only + - l_use_system_container + - not l_use_crio_only - name: Add CRI-O usage Requested include: systemcontainer_crio.yml when: - - l_use_crio - - inventory_hostname in groups['oo_masters_to_config'] or inventory_hostname in groups['oo_nodes_to_config'] + - l_use_crio + - inventory_hostname in groups['oo_masters_to_config'] or inventory_hostname in groups['oo_nodes_to_config'] |