You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/lib/ansible_test/_data/playbooks/windows_coverage_setup.yml

19 lines
518 B
YAML

- name: Setup Windows code coverage configuration
hosts: all
gather_facts: no
tasks:
- name: Create coverage temporary directory
ansible.windows.win_file:
path: '{{ remote_temp_path }}'
state: directory
- name: Allow everyone to write to the temporary coverage directory
ansible.windows.win_acl:
path: '{{ remote_temp_path }}'
user: Everyone
rights: Modify
inherit: ContainerInherit, ObjectInherit
propagation: 'None'
type: allow
state: present