mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Normalize bools in tests. (#589)
This commit is contained in:
@@ -5,13 +5,13 @@
|
||||
|
||||
- hosts: 127.0.0.1
|
||||
connection: local
|
||||
gather_facts: yes
|
||||
gather_facts: true
|
||||
tasks:
|
||||
- name: remove docker containers
|
||||
docker_container:
|
||||
name: "{{ item }}"
|
||||
state: absent
|
||||
force_kill: yes
|
||||
force_kill: true
|
||||
loop:
|
||||
- ansible-docker-test-docker-inventory-container-1
|
||||
- ansible-docker-test-docker-inventory-container-2
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
- hosts: 127.0.0.1
|
||||
connection: local
|
||||
vars:
|
||||
docker_skip_cleanup: yes
|
||||
docker_skip_cleanup: true
|
||||
|
||||
tasks:
|
||||
- name: Setup docker
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@
|
||||
|
||||
- hosts: 127.0.0.1
|
||||
connection: local # otherwise Ansible will complain that it cannot connect via ssh to 127.0.0.1:22
|
||||
gather_facts: no
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Show all groups
|
||||
debug:
|
||||
|
||||
+2
-2
@@ -5,7 +5,7 @@
|
||||
|
||||
- hosts: 127.0.0.1
|
||||
connection: local # otherwise Ansible will complain that it cannot connect via ssh to 127.0.0.1:22
|
||||
gather_facts: no
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Show all groups
|
||||
debug:
|
||||
@@ -33,7 +33,7 @@
|
||||
connection: local
|
||||
vars:
|
||||
ansible_python_interpreter: "{{ ansible_playbook_python }}"
|
||||
gather_facts: no
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Show all variables
|
||||
debug:
|
||||
|
||||
Reference in New Issue
Block a user