-
-
Save softtears/529395d2d0fc7e79ab07014aa6ae0149 to your computer and use it in GitHub Desktop.
Ansible playbook to run Windows Update and restart, if required
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Ansible playbook to run Windows Update and restart, if required | |
# | |
# http://docs.ansible.com/ansible/win_updates_module.html | |
# https://docs.ansible.com/ansible/win_reboot_module.html | |
- name: Windows Update | |
hosts: all | |
gather_facts: false | |
tasks: | |
- name: Running Windows Update | |
win_updates: | |
category_names: ['SecurityUpdates','CriticalUpdates','UpdateRollups', 'Updates', 'DefinitionUpdates'] | |
register: result | |
# output results | |
- debug: var=result | |
# reboot only if required | |
- win_reboot: | |
when: result.reboot_required | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment