|
|
@ -6,6 +6,7 @@ import json
|
|
|
|
from ansible.errors import AnsibleError
|
|
|
|
from ansible.errors import AnsibleError
|
|
|
|
from ansible.module_utils._text import to_text
|
|
|
|
from ansible.module_utils._text import to_text
|
|
|
|
from ansible.module_utils.parsing.convert_bool import boolean
|
|
|
|
from ansible.module_utils.parsing.convert_bool import boolean
|
|
|
|
|
|
|
|
from ansible.parsing.yaml.objects import AnsibleUnicode
|
|
|
|
from ansible.plugins.action import ActionBase
|
|
|
|
from ansible.plugins.action import ActionBase
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
try:
|
|
|
@ -140,6 +141,9 @@ class ActionModule(ActionBase):
|
|
|
|
'SecurityUpdates',
|
|
|
|
'SecurityUpdates',
|
|
|
|
'UpdateRollups',
|
|
|
|
'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',
|
|
|
|