mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 07:35:31 +01:00
Check OS distribution before synchronize instegration test task
Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
parent
6a5040cb76
commit
fc58c51fba
1 changed files with 26 additions and 26 deletions
|
|
@ -23,32 +23,32 @@
|
||||||
debug:
|
debug:
|
||||||
msg: "{{ ansible_distribution }}"
|
msg: "{{ ansible_distribution }}"
|
||||||
|
|
||||||
#- name: synchronize file to new filename
|
- name: synchronize file to new filename
|
||||||
# synchronize:
|
synchronize:
|
||||||
# src: '{{output_dir}}/foo.txt'
|
src: '{{output_dir}}/foo.txt'
|
||||||
# dest: '{{output_dir}}/foo.result'
|
dest: '{{output_dir}}/foo.result'
|
||||||
# register: sync_result
|
register: sync_result
|
||||||
# delegate_to: '{{ inventory_hostname }}'
|
#delegate_to: '{{ inventory_hostname }}'
|
||||||
#- assert:
|
- assert:
|
||||||
# that:
|
that:
|
||||||
# - '''changed'' in sync_result'
|
- '''changed'' in sync_result'
|
||||||
# - sync_result.changed == true
|
- sync_result.changed == true
|
||||||
# - '''cmd'' in sync_result'
|
- '''cmd'' in sync_result'
|
||||||
# - '''rsync'' in sync_result.cmd'
|
- '''rsync'' in sync_result.cmd'
|
||||||
# - '''msg'' in sync_result'
|
- '''msg'' in sync_result'
|
||||||
# - sync_result.msg.startswith('>f+')
|
- sync_result.msg.startswith('>f+')
|
||||||
# - 'sync_result.msg.endswith(''+ foo.txt
|
- 'sync_result.msg.endswith(''+ foo.txt
|
||||||
#
|
|
||||||
# '')'
|
'')'
|
||||||
#- name: test that the file was really copied over
|
- name: test that the file was really copied over
|
||||||
# stat:
|
stat:
|
||||||
# path: '{{ output_dir }}/foo.result'
|
path: '{{ output_dir }}/foo.result'
|
||||||
# register: stat_result
|
register: stat_result
|
||||||
#- assert:
|
- assert:
|
||||||
# that:
|
that:
|
||||||
# - stat_result.stat.exists == True
|
- stat_result.stat.exists == True
|
||||||
# - stat_result.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed'
|
- stat_result.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed'
|
||||||
#
|
|
||||||
#- name: test that the file is not copied a second time
|
#- name: test that the file is not copied a second time
|
||||||
# synchronize:
|
# synchronize:
|
||||||
# src='{{output_dir}}/foo.txt'
|
# src='{{output_dir}}/foo.txt'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue