mirror of https://github.com/ansible/ansible.git
win_rds: move the tests into 1 target to make it quicker (#51728)
parent
64084d593e
commit
e284d21139
@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
# Server 2008 R2 requires us to remove this first before the other features
|
|
||||||
- name: remove the RDS-Gateway feature
|
|
||||||
win_feature:
|
|
||||||
name: RDS-Gateway
|
|
||||||
state: absent
|
|
||||||
listen: remove RDS feature
|
|
||||||
register: rds_uninstall
|
|
||||||
|
|
||||||
- name: reboot after removing RDS-Gateway feature
|
|
||||||
win_reboot:
|
|
||||||
when: rds_uninstall.reboot_required
|
|
||||||
listen: remove RDS feature
|
|
||||||
|
|
||||||
# Now remove the remaining features
|
|
||||||
- name: remove installed RDS feature
|
|
||||||
win_feature:
|
|
||||||
name:
|
|
||||||
- RDS-Licensing
|
|
||||||
- RDS-RD-Server
|
|
||||||
- Web-Server # not part of the initial feature install but RDS-Gateway requires this and it breaks httptester
|
|
||||||
state: absent
|
|
||||||
listen: remove RDS feature
|
|
||||||
register: rds_uninstall2
|
|
||||||
|
|
||||||
- name: reboot after feature removal
|
|
||||||
win_reboot:
|
|
||||||
when: rds_uninstall2.reboot_required
|
|
||||||
listen: remove RDS feature
|
|
@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
# Cannot use win_feature to install RDS on Server 2008
|
|
||||||
- name: check if feature is availble
|
|
||||||
win_shell: if (Get-Command -Name Add-WindowsFeature -ErrorAction SilentlyContinue) { $true } else { $false }
|
|
||||||
changed_when: False
|
|
||||||
register: module_available
|
|
||||||
|
|
||||||
- name: set fact when RDS is available
|
|
||||||
set_fact:
|
|
||||||
rds_available: '{{ module_available.stdout | trim | bool }}'
|
|
||||||
|
|
||||||
- name: install Remote Desktop Gateway features
|
|
||||||
when: rds_available
|
|
||||||
block:
|
|
||||||
- name: ensure Remote Desktop Gateway services are installed
|
|
||||||
win_feature:
|
|
||||||
name:
|
|
||||||
- RDS-Gateway
|
|
||||||
- RDS-Licensing
|
|
||||||
- RDS-RD-Server
|
|
||||||
state: present
|
|
||||||
register: rds_install
|
|
||||||
notify:
|
|
||||||
- remove RDS feature
|
|
||||||
|
|
||||||
- name: reboot server if needed
|
|
||||||
win_reboot:
|
|
||||||
post_reboot_delay: 10
|
|
||||||
when: rds_install.reboot_required
|
|
@ -0,0 +1,6 @@
|
|||||||
|
shippable/windows/group3
|
||||||
|
destructive
|
||||||
|
skip/windows/2008 # win_feature is required to install the RDS feature and that doesn't support 2008
|
||||||
|
win_rds_cap
|
||||||
|
win_rds_rap
|
||||||
|
win_rds_settings
|
@ -0,0 +1,9 @@
|
|||||||
|
# win_rds_cap
|
||||||
|
test_win_rds_cap_name: Ansible Test CAP
|
||||||
|
|
||||||
|
# win_rds_rap
|
||||||
|
test_win_rds_rap_name: Ansible Test RAP
|
||||||
|
|
||||||
|
# win_rds_settings
|
||||||
|
test_win_rds_settings_path: '{{win_output_dir}}\win_rds_settings'
|
||||||
|
rds_cert_suject: rdg.test.com
|
@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
# Cannot use win_feature to install RDS on Server 2008
|
||||||
|
- name: check if feature is availble
|
||||||
|
win_shell: if (Get-Command -Name Add-WindowsFeature -ErrorAction SilentlyContinue) { $true } else { $false }
|
||||||
|
changed_when: False
|
||||||
|
register: module_available
|
||||||
|
|
||||||
|
- name: install Remote Desktop Gateway features
|
||||||
|
when: module_available.stdout | trim | bool
|
||||||
|
block:
|
||||||
|
- name: ensure Remote Desktop Gateway services are installed
|
||||||
|
win_feature:
|
||||||
|
name:
|
||||||
|
- RDS-Gateway
|
||||||
|
- RDS-Licensing
|
||||||
|
- RDS-RD-Server
|
||||||
|
state: present
|
||||||
|
register: rds_install
|
||||||
|
|
||||||
|
- name: reboot server if needed
|
||||||
|
win_reboot:
|
||||||
|
post_reboot_delay: 10
|
||||||
|
when: rds_install.reboot_required
|
||||||
|
|
||||||
|
- name: run win_rds_cap integration tests
|
||||||
|
include_tasks: win_rds_cap.yml
|
||||||
|
|
||||||
|
- name: run win_rds_rap integration tests
|
||||||
|
include_tasks: win_rds_rap.yml
|
||||||
|
|
||||||
|
- name: run win_rds_settings integration tests
|
||||||
|
include_tasks: win_rds_settings.yml
|
||||||
|
|
||||||
|
always:
|
||||||
|
# Server 2008 R2 requires us to remove this first before the other features
|
||||||
|
- name: remove the RDS-Gateway feature
|
||||||
|
win_feature:
|
||||||
|
name: RDS-Gateway
|
||||||
|
state: absent
|
||||||
|
register: rds_uninstall
|
||||||
|
|
||||||
|
- name: reboot after removing RDS-Gateway feature
|
||||||
|
win_reboot:
|
||||||
|
when: rds_uninstall.reboot_required
|
||||||
|
|
||||||
|
# Now remove the remaining features
|
||||||
|
- name: remove installed RDS feature
|
||||||
|
win_feature:
|
||||||
|
name:
|
||||||
|
- RDS-Licensing
|
||||||
|
- RDS-RD-Server
|
||||||
|
- Web-Server # not part of the initial feature install but RDS-Gateway requires this and it breaks httptester
|
||||||
|
state: absent
|
||||||
|
register: rds_uninstall2
|
||||||
|
|
||||||
|
- name: reboot after feature removal
|
||||||
|
win_reboot:
|
||||||
|
when: rds_uninstall2.reboot_required
|
@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
- name: run tests with cleanup
|
- name: run tests with cleanup
|
||||||
when: rds_available # defined in setup_win_rds
|
|
||||||
block:
|
block:
|
||||||
- name: run tests
|
- name: run tests
|
||||||
include_tasks: tests.yml
|
include_tasks: win_rds_cap_tests.yml
|
||||||
|
|
||||||
always:
|
always:
|
||||||
- name: delete all CAPs
|
- name: delete all CAPs
|
@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
- name: run tests with cleanup
|
- name: run tests with cleanup
|
||||||
when: rds_available # defined in setup_win_rds
|
|
||||||
block:
|
block:
|
||||||
- name: run tests
|
- name: run tests
|
||||||
include_tasks: tests.yml
|
include_tasks: win_rds_rap_tests.yml
|
||||||
|
|
||||||
always:
|
always:
|
||||||
- name: delete all RAPs
|
- name: delete all RAPs
|
@ -1,3 +0,0 @@
|
|||||||
shippable/windows/group3
|
|
||||||
destructive
|
|
||||||
skip/windows/2008 # win_feature is requires to install the RDS feature and that doesn't support 2008
|
|
@ -1 +0,0 @@
|
|||||||
test_win_rds_cap_name: Ansible Test CAP
|
|
@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
dependencies:
|
|
||||||
- setup_win_rds
|
|
@ -1,3 +0,0 @@
|
|||||||
shippable/windows/group3
|
|
||||||
destructive
|
|
||||||
skip/windows/2008 # win_feature is requires to install the RDS feature and that doesn't support 2008
|
|
@ -1 +0,0 @@
|
|||||||
test_win_rds_rap_name: Ansible Test RAP
|
|
@ -1,2 +0,0 @@
|
|||||||
dependencies:
|
|
||||||
- setup_win_rds
|
|
@ -1,3 +0,0 @@
|
|||||||
shippable/windows/group1
|
|
||||||
destructive
|
|
||||||
skip/windows/2008 # win_feature is requires to install the RDS feature and that doesn't support 2008
|
|
@ -1,2 +0,0 @@
|
|||||||
test_win_rds_settings_path: '{{win_output_dir}}\win_rds_settings'
|
|
||||||
rds_cert_suject: rdg.test.com
|
|
@ -1,2 +0,0 @@
|
|||||||
dependencies:
|
|
||||||
- setup_win_rds
|
|
Loading…
Reference in New Issue