a0178b79f1
* win_uri: moved away from Invoke-WebRequest and fixed multiple issues * fixes from review
14 lines
245 B
YAML
14 lines
245 B
YAML
---
|
|
- name: create test directory
|
|
win_file:
|
|
path: '{{test_uri_path}}'
|
|
state: directory
|
|
|
|
- block:
|
|
- include_tasks: test.yml
|
|
|
|
always:
|
|
- name: cleanup test directory
|
|
win_file:
|
|
path: '{{test_uri_path}}'
|
|
state: absent
|