mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Normalize bools in tests (#5996)
* Normalize bools in tests. * Fix typo.
This commit is contained in:
parent
4c4ef80ca9
commit
24efe9ee9a
182 changed files with 770 additions and 770 deletions
|
@ -46,7 +46,7 @@
|
|||
loop: "{{ java_keystore_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates
|
||||
|
@ -62,7 +62,7 @@
|
|||
loop: "{{ java_keystore_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_idem_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (idempotency)
|
||||
|
@ -102,7 +102,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_change_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (certificate changed)
|
||||
|
@ -120,7 +120,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_alias_change_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (alias changed)
|
||||
|
@ -141,7 +141,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_pw_change_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (password changed)
|
||||
|
@ -164,7 +164,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_type_pkcs12_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (force keystore type jks, check mode)
|
||||
|
@ -176,7 +176,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_type_jks_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (force keystore type jks)
|
||||
|
@ -225,7 +225,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_type_change_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (keystore type changed)
|
||||
|
@ -248,7 +248,7 @@
|
|||
loop: "{{ java_keystore_new_certs }}"
|
||||
loop_control:
|
||||
index_var: loop_index
|
||||
check_mode: yes
|
||||
check_mode: true
|
||||
register: result_type_omit_check
|
||||
|
||||
- name: Create a Java keystore for the given certificates (omit keystore type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue