mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
18 lines
320 B
YAML
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: clenaup testing dir
|
|
win_file:
|
|
path: '{{ test_acl_path }}'
|
|
state: absent
|