win_hotfix: new module to install Windows hotfixes (#27260)

* win_hotfix: new module to install Windows hotfixes

* revert to older module util loader style to satisfy the checks for now

* Changes from PR

* changed the test hotfix so we can run tests in shippable
This commit is contained in:
Jordan Borean 2017-08-11 07:57:07 +10:00 committed by GitHub
commit 5fbbf0e75a
7 changed files with 743 additions and 0 deletions

View file

@ -0,0 +1 @@
windows/ci/group1

View file

@ -0,0 +1,13 @@
---
# these hotfixes, are for Hyper-V, there may be a chance the system already has them
# but in most cases for our CI purposes they wouldn't be present
test_win_hotfix_good_url: http://download.windowsupdate.com/c/msdownload/update/software/htfx/2015/01/windows8.1-kb3027108-v2-x64_66366c7be2d64d83b63cac42bc40c0a3c01bc70d.msu
test_win_hotfix_reboot_url: http://download.windowsupdate.com/c/msdownload/update/software/htfx/2014/01/windows8.1-kb2913659-v2-x64_963a4d890c9ff9cc83a97cf54305de6451038ba4.msu
test_win_hotfix_bad_url: http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/07/windows8-rt-kb3172729-x64_69cab4c7785b1faa3fc450f32bed4873d53bb96f.msu
test_win_hotfix_path: C:\ansible\win_hotfix
test_win_hotfix_kb: KB3027108
test_win_hotfix_identifier: Package_for_KB3027108~31bf3856ad364e35~amd64~~6.3.2.0
test_win_hotfix_reboot_kb: KB2913659
test_win_hotfix_reboot_identifier: Package_for_KB2913659~31bf3856ad364e35~amd64~~6.3.2.0

View file

@ -0,0 +1,54 @@
---
- name: filter servers that can support DISM
win_command: powershell.exe "Import-Module -Name DISM"
register: eligable_servers
ignore_errors: True
- name: fail to run module on servers that don't support DISM
win_hotfix:
path: fake
state: present
register: fail_no_dism
failed_when: fail_no_dism.msg != 'The DISM PS module needs to be installed, this can be done through the windows-adk chocolately package'
when: eligable_servers.rc != 0
- name: run tests on hosts that support DISM
include_tasks: tests.yml
when: eligable_servers.rc == 0
- name: set output to true if running Server 2012 R2
win_command: powershell.exe "$version = [Environment]::OSVersion.Version; if ($version.Major -eq 6 -and $version.Minor -eq 3) { 'true' } else { 'false' }"
register: test_hotfix
- block:
- name: ensure hotfixes are uninstalled before tests
win_hotfix:
hotfix_identifier: '{{item}}'
state: absent
register: pre_uninstall
with_items:
- '{{test_win_hotfix_identifier}}'
- '{{test_win_hotfix_reboot_identifier}}'
- name: reboot after pre test uninstall if required
win_reboot:
when: pre_uninstall.results[0].reboot_required == True or pre_uninstall.results[1].reboot_required == True
- name: run actual hotfix tests on Server 2012 R2 only
include_tasks: tests_2012R2.yml
always:
- name: ensure hotfixes are uninstalled after tests
win_hotfix:
hotfix_identifier: '{{item}}'
state: absent
register: post_uninstall
with_items:
- '{{test_win_hotfix_identifier}}'
- '{{test_win_hotfix_reboot_identifier}}'
- name: reboot after post test uninstall if required
win_reboot:
when: post_uninstall.results[0].reboot_required == True or post_uninstall.results[1].reboot_required == True
when: test_hotfix.stdout_lines[0] == "true"

View file

@ -0,0 +1,35 @@
# only basic tests, doesn't actually install/uninstall and hotfixes
---
- name: fail when source isn't set
win_hotfix:
state: present
register: fail_no_source
failed_when: fail_no_source.msg != 'source must be set when state=present'
- name: fail when identifier or kb isn't set on absent
win_hotfix:
state: absent
register: fail_no_key
failed_when: fail_no_key.msg != 'either hotfix_identifier or hotfix_kb needs to be set when state=absent'
- name: remove an identifier that isn't installed
win_hotfix:
hotfix_identifier: fake~identifier
state: absent
register: remove_missing_hotfix_identifier
- name: assert remove an identifier that isn't installed
assert:
that:
- not remove_missing_hotfix_identifier|changed
- name: remove a kb that isn't installed
win_hotfix:
hotfix_kb: KB123456
state: absent
register: remove_missing_hotfix_kb
- name: assert remove a kb that isn't installed
assert:
that:
- not remove_missing_hotfix_kb|changed

View file

@ -0,0 +1,253 @@
---
- name: create test staging folder
win_file:
path: '{{test_win_hotfix_path}}'
state: directory
- name: download hotfix
win_get_url:
url: '{{test_win_hotfix_good_url}}'
dest: '{{test_win_hotfix_path}}\good.msu'
- name: download reboot hotfix
win_get_url:
url: '{{test_win_hotfix_reboot_url}}'
dest: '{{test_win_hotfix_path}}\reboot.msu'
- name: download bad hotfix
win_get_url:
url: '{{test_win_hotfix_bad_url}}'
dest: '{{test_win_hotfix_path}}\bad.msu'
- name: fail install install hotfix where kb doesn't match
win_hotfix:
hotfix_kb: KB0000000
source: '{{test_win_hotfix_path}}\good.msu'
state: present
register: fail_install_invalid_kb
failed_when: fail_install_invalid_kb.msg != 'the hotfix KB KB0000000 does not match with the source msu KB ' + test_win_hotfix_kb + ', please omit or specify the correct KB to continue'
- name: fail install install hotfix where identifier doesn't match
win_hotfix:
hotfix_identifier: invalid
source: '{{test_win_hotfix_path}}\good.msu'
state: present
register: fail_install_invalid_identifier
failed_when: fail_install_invalid_identifier.msg != 'the hotfix identifier invalid does not match with the source msu identifier ' + test_win_hotfix_identifier + ', please omit or specify the correct identifier to continue'
- name: fail install not applicable hotfix
win_hotfix:
source: '{{test_win_hotfix_path}}\bad.msu'
state: present
register: fail_install_not_applicable
failed_when: fail_install_not_applicable.msg != 'hotfix package is not applicable for this server'
- name: install hotfix check
win_hotfix:
source: '{{test_win_hotfix_path}}\good.msu'
state: present
register: install_hotfix_check
check_mode: yes
- name: get result of install hotfix check
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_kb}}
register: install_hotfix_actual_check
ignore_errors: True
- name: assert install hotfix check
assert:
that:
- install_hotfix_check|changed
- install_hotfix_check.kb == test_win_hotfix_kb
- install_hotfix_check.identifier == test_win_hotfix_identifier
- install_hotfix_actual_check.rc != 0
- name: install hotfix
win_hotfix:
source: '{{test_win_hotfix_path}}\good.msu'
state: present
register: install_hotfix
- name: get result of install hotfix
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_kb}}
register: install_hotfix_actual
- name: assert install hotfix
assert:
that:
- install_hotfix|changed
- install_hotfix.kb == test_win_hotfix_kb
- install_hotfix.identifier == test_win_hotfix_identifier
- install_hotfix.reboot_required == False
- install_hotfix_actual.rc == 0
- name: install hotfix again
win_hotfix:
source: '{{test_win_hotfix_path}}\good.msu'
state: present
register: install_hotfix_again
- name: assert install hotfix again
assert:
that:
- not install_hotfix_again|changed
- install_hotfix_again.kb == test_win_hotfix_kb
- install_hotfix_again.identifier == test_win_hotfix_identifier
- install_hotfix_again.reboot_required == False
- name: uninstall hotfix check
win_hotfix:
hotfix_identifier: '{{test_win_hotfix_identifier}}'
state: absent
register: uninstall_hotfix_check
check_mode: yes
- name: get result of uninstall hotfix check
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_kb}}
register: uninstall_hotfix_actual_check
- name: assert uninstall hotfix check
assert:
that:
- uninstall_hotfix_check|changed
- uninstall_hotfix_check.kb == test_win_hotfix_kb
- uninstall_hotfix_check.identifier == test_win_hotfix_identifier
- uninstall_hotfix_actual_check.rc == 0
- name: uninstall hotfix
win_hotfix:
hotfix_identifier: '{{test_win_hotfix_identifier}}'
state: absent
register: uninstall_hotfix
- name: get result of uninstall hotfix
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_kb}}
register: uninstall_hotfix_actual
ignore_errors: True
- name: assert uninstall hotfix
assert:
that:
- uninstall_hotfix|changed
- uninstall_hotfix.kb == test_win_hotfix_kb
- uninstall_hotfix.identifier == test_win_hotfix_identifier
- uninstall_hotfix.reboot_required == False
- uninstall_hotfix_actual.rc != 0
- name: uninstall hotfix again
win_hotfix:
hotfix_identifier: '{{test_win_hotfix_identifier}}'
state: absent
register: uninstall_hotfix_again
- name: assert uninstall hotfix again
assert:
that:
- not uninstall_hotfix_again|changed
- uninstall_hotfix_again.reboot_required == False
- name: install reboot hotfix
win_hotfix:
hotfix_kb: '{{test_win_hotfix_reboot_kb}}'
source: '{{test_win_hotfix_path}}\reboot.msu'
state: present
register: install_reboot_hotfix
- name: get result of install reboot hotfix
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_reboot_kb}}
register: install_hotfix_reboot_actual
- name: assert install reboot hotfix
assert:
that:
- install_reboot_hotfix|changed
- install_reboot_hotfix.kb == test_win_hotfix_reboot_kb
- install_reboot_hotfix.identifier == test_win_hotfix_reboot_identifier
- install_reboot_hotfix.reboot_required == True
- install_hotfix_reboot_actual.rc == 0
- name: run install reboot again before rebooting
win_hotfix:
source: '{{test_win_hotfix_path}}\reboot.msu'
state: present
register: install_before_rebooting
- name: assert install reboot again before rebooting
assert:
that:
- not install_before_rebooting|changed
- install_before_rebooting.reboot_required == True
- win_reboot:
- name: install reboot hotfix again
win_hotfix:
hotfix_identifier: '{{test_win_hotfix_reboot_identifier}}'
source: '{{test_win_hotfix_path}}\reboot.msu'
state: present
register: install_reboot_hotfix_again
- name: assert install reboot hotfix again
assert:
that:
- not install_reboot_hotfix_again|changed
- install_reboot_hotfix_again.reboot_required == False
- name: uninstall hotfix with kb check
win_hotfix:
hotfix_kb: '{{test_win_hotfix_reboot_kb}}'
state: absent
register: uninstall_hotfix_kb_check
check_mode: yes
- name: get result of uninstall hotfix with kb check
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_reboot_kb}}
register: uninstall_hotfix_kb_actual_check
- name: assert uninstall hotfix with kb check
assert:
that:
- uninstall_hotfix_kb_check|changed
- uninstall_hotfix_kb_check.kb == test_win_hotfix_reboot_kb
- uninstall_hotfix_kb_check.identifier == test_win_hotfix_reboot_identifier
- uninstall_hotfix_kb_check.reboot_required == False
- uninstall_hotfix_kb_actual_check.rc == 0
- name: uninstall hotfix with kb
win_hotfix:
hotfix_kb: '{{test_win_hotfix_reboot_kb}}'
state: absent
register: uninstall_hotfix_kb
- name: get result of uninstall hotfix with kb
win_command: powershell.exe Get-Hotfix -Id {{test_win_hotfix_kb}}
register: uninstall_hotfix_kb_actual
ignore_errors: True
- name: assert uninstall hotfix with kb
assert:
that:
- uninstall_hotfix_kb|changed
- uninstall_hotfix_kb.kb == test_win_hotfix_reboot_kb
- uninstall_hotfix_kb.identifier == test_win_hotfix_reboot_identifier
- uninstall_hotfix_kb.reboot_required == True
- uninstall_hotfix_kb_actual.rc != 0
- win_reboot:
- name: uninstall hotfix with kb again
win_hotfix:
hotfix_kb: '{{test_win_hotfix_reboot_kb}}'
state: absent
register: uninstall_hotfix_kb_again
- name: assert uninstall hotfix with kb again
assert:
that:
- not uninstall_hotfix_kb_again|changed
- uninstall_hotfix_kb_again.reboot_required == False
- name: remove test staging folder
win_file:
path: '{{test_win_hotfix_path}}'
state: absent