mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
Do Not Merge this PR
- This is test for CI issue with PR #278 Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
parent
3514f9d3dc
commit
51c542b2f6
1 changed files with 17 additions and 0 deletions
|
|
@ -265,3 +265,20 @@
|
||||||
- directory_a/foo.txt
|
- directory_a/foo.txt
|
||||||
- directory_a
|
- directory_a
|
||||||
- directory_b
|
- directory_b
|
||||||
|
|
||||||
|
- name: setup - test for source with working dir with spaces in path
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: '{{output_dir}}/{{item}}'
|
||||||
|
delegate_to: '{{ inventory_hostname }}'
|
||||||
|
with_items:
|
||||||
|
- 'directory a'
|
||||||
|
- 'directory b'
|
||||||
|
- name: setup - create test new files
|
||||||
|
copy:
|
||||||
|
dest: '{{output_dir}}/directory a/{{item}}'
|
||||||
|
mode: '0644'
|
||||||
|
content: 'hello world'
|
||||||
|
with_items:
|
||||||
|
- foo.txt
|
||||||
|
delegate_to: '{{ inventory_hostname }}'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue