ansible/test/integration/targets/win_acl/tasks/main.yml
2019-03-15 14:57:41 +10:00

18 lines
320 B
YAML

---
- name: ensure we start with a clean dir
win_file:
path: '{{ test_acl_path }}'
state: '{{ item }}'
with_items:
- absent
- directory
- block:
- name: run tests
include_tasks: tests.yml
always:
- name: cleanup testing dir
win_file:
path: '{{ test_acl_path }}'
state: absent