Hello Team,
We’re using the ‘win_updates’ module for installing Windows updates on servers, following is the playbook section:
tasks:
- name: Applying Security Windows Updates
win_updates:
category_name: - SecurityUpdates
- UpdateRollups
whitelist: - KB2992611
- KB4103730
log_path: C:\ansible_wu.txt
register: wuout
Even after white listing these updates, they were not installed. Following are the logs:
2018-05-09 23:57:46Z Skipping update c5406426-d347-4a93-acbb-e595a00a4fb8 - Security Update for Windows Server 2012 (KB2992611) as it was not found in the whitelist
2018-05-09 23:57:46Z Skipping update bfdb9786-0c43-40be-ab19-654fc8d32dd8 - 2018-05 Security Monthly Quality Rollup for Windows Server 2012 for x64-based Systems (KB4103730) as it was not found in the whitelist
What could be the reason and how can we resolve this issue?
Thank you,
Dinesh