mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win_updates - fix category return value to be a list (#51001)
* win_updates - fix category return value to be a list * remove unstable test alias
This commit is contained in:
parent
88bb555ab8
commit
b7620c161a
3 changed files with 1 additions and 10 deletions
|
@ -112,7 +112,7 @@ $update_script_block = {
|
||||||
kb = $update.KBArticleIDs
|
kb = $update.KBArticleIDs
|
||||||
id = $update.Identity.UpdateId
|
id = $update.Identity.UpdateId
|
||||||
installed = $false
|
installed = $false
|
||||||
categories = ($update.Categories | ForEach-Object { $_.Name })
|
categories = @($update.Categories | ForEach-Object { $_.Name })
|
||||||
}
|
}
|
||||||
|
|
||||||
# validate update again blacklist/whitelist/post_category_names/hidden
|
# validate update again blacklist/whitelist/post_category_names/hidden
|
||||||
|
|
|
@ -134,14 +134,6 @@ class ActionModule(ActionBase):
|
||||||
result = super(ActionModule, self).run(tmp, task_vars)
|
result = super(ActionModule, self).run(tmp, task_vars)
|
||||||
del tmp # tmp no longer has any effect
|
del tmp # tmp no longer has any effect
|
||||||
|
|
||||||
category_names = self._task.args.get('category_names', [
|
|
||||||
'CriticalUpdates',
|
|
||||||
'SecurityUpdates',
|
|
||||||
'UpdateRollups',
|
|
||||||
])
|
|
||||||
if isinstance(category_names, AnsibleUnicode):
|
|
||||||
category_names = [cat.strip() for cat in category_names.split(",")]
|
|
||||||
|
|
||||||
state = self._task.args.get('state', 'installed')
|
state = self._task.args.get('state', 'installed')
|
||||||
reboot = self._task.args.get('reboot', False)
|
reboot = self._task.args.get('reboot', False)
|
||||||
reboot_timeout = self._task.args.get('reboot_timeout',
|
reboot_timeout = self._task.args.get('reboot_timeout',
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
shippable/windows/group2
|
shippable/windows/group2
|
||||||
unstable
|
|
||||||
|
|
Loading…
Reference in a new issue