18 lines
398 B
YAML
18 lines
398 B
YAML
---
|
|
- name: Stage updates arc
|
|
become_method: runas
|
|
hosts: all
|
|
tasks:
|
|
- name: stage all updates without installing them
|
|
ansible.windows.win_updates:
|
|
category_names:
|
|
- SecurityUpdates
|
|
- CriticalUpdates
|
|
- DefinitionUpdates
|
|
state: downloaded
|
|
server_selection: "windows_update"
|
|
reboot: false
|
|
ignore_unreachable: true
|
|
|
|
|
|
|