ansible/test/integration/targets/win_uri/tasks/main.yml
Jordan Borean a0178b79f1
win_uri: fixes (#35487)
* win_uri: moved away from Invoke-WebRequest and fixed multiple issues

* fixes from review
2018-02-07 20:58:47 +11:00

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