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_hostname/tasks/main.yml

19 lines
394 B
YAML

---
- name: get the current hostname
win_command: hostname
register: current_hostname
- block:
- name: run tests
include_tasks: test.yml
always:
- name: reset the hostname back to the original
win_hostname:
name: '{{current_hostname.stdout_lines[0]}}'
register: reset_hostname
- name: reboot if required
win_reboot:
when: reset_hostname.reboot_required