pull/86136/head
Simon Leary 4 weeks ago
parent e6b147aa43
commit b93e4ed387

@ -190,7 +190,7 @@
- name: verify that changed=false - name: verify that changed=false
assert: assert:
that: "! redundant_command_result.changed" that: "redundant_command_result is not changed"
- name: re-run previous command using creates with globbing (check mode) - name: re-run previous command using creates with globbing (check mode)
command: "{{ remote_tmp_dir_test }}/create_afile.sh {{ remote_tmp_dir_test }}/afile.txt" command: "{{ remote_tmp_dir_test }}/create_afile.sh {{ remote_tmp_dir_test }}/afile.txt"
@ -259,7 +259,7 @@
- name: verify that changed=false - name: verify that changed=false
assert: assert:
that: "! redundant_command_result.changed" that: "redundant_command_result is not changed"
- name: re-run previous command using removes with globbing (check mode) - name: re-run previous command using removes with globbing (check mode)
command: "{{ remote_tmp_dir_test }}/remove_afile.sh {{ remote_tmp_dir_test }}/afile.txt" command: "{{ remote_tmp_dir_test }}/remove_afile.sh {{ remote_tmp_dir_test }}/afile.txt"
@ -337,7 +337,7 @@
- name: verify that changed=false - name: verify that changed=false
assert: assert:
that: "! redundant_command_result.changed" that: "redundant_command_result is not changed"
- name: re-run previous command using creates with globbing (check mode) - name: re-run previous command using creates with globbing (check mode)
command: touch {{ remote_tmp_dir_test }}/afile.txt {{ remote_tmp_dir_test }}/bfile.txt command: touch {{ remote_tmp_dir_test }}/afile.txt {{ remote_tmp_dir_test }}/bfile.txt
@ -417,7 +417,7 @@
- name: verify that changed=false - name: verify that changed=false
assert: assert:
that: "! redundant_command_result.changed" that: "redundant_command_result is not changed"
- name: re-run previous command using removes with globbing (check mode) - name: re-run previous command using removes with globbing (check mode)
command: rm {{ remote_tmp_dir_test }}/afile.txt {{ remote_tmp_dir_test }}/bfile.txt command: rm {{ remote_tmp_dir_test }}/afile.txt {{ remote_tmp_dir_test }}/bfile.txt

Loading…
Cancel
Save