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/integration/targets/win_reg_stat/tasks/main.yml

30 lines
676 B
YAML

---
- name: get value of expand string %windir%
win_command: powershell.exe $env:windir
register: win_dir_value
- name: template out test registry structure
win_template:
src: test_reg.reg.j2
dest: '{{ win_output_dir }}\test_reg.reg'
- name: import test registry structure
win_regmerge:
path: '{{ win_output_dir }}\test_reg.reg'
- block:
- name: run tests
import_tasks: tests.yml
always:
- name: remove test registry key
win_regedit:
path: HKCU:\{{ test_reg_path }}
state: absent
delete_key: True
- name: remove template registry file
win_file:
path: '{{ win_output_dir }}\test_reg.reg'
state: absent