Fix the docker_swarm conditionals
This commit is contained in:
parent
1a61a27af9
commit
77c4c59ff1
|
@ -3,7 +3,6 @@
|
|||
user: name=docker comment="Docker User" shell=/bin/bash home={{ docker_user_home }} system=yes
|
||||
when: docker_run_as_docker_user
|
||||
|
||||
|
||||
- import_tasks: deb_pkgs.yml
|
||||
when: ansible_distribution_file_variety == "Debian"
|
||||
- import_tasks: el_pkgs.yml
|
||||
|
@ -12,7 +11,7 @@
|
|||
- import_tasks: docker_setup.yml
|
||||
|
||||
- import_tasks: swarm_mgr.yml
|
||||
when: docker_swarm | bool
|
||||
when: docker_swarm
|
||||
|
||||
- import_tasks: swarm_node.yml
|
||||
when: docker_swarm | bool
|
||||
when: docker_swarm
|
||||
|
|
Loading…
Reference in New Issue