mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-22 12:50:42 +00:00
add block paramters to __ansible_action_meta__ if task is 'block'
This commit is contained in:
parent
531591fd05
commit
bae3078c75
@ -101,7 +101,8 @@ def check_command_instead_of_module(candidate, settings):
|
|||||||
first_cmd_arg = task["action"]["__ansible_arguments__"][0]
|
first_cmd_arg = task["action"]["__ansible_arguments__"][0]
|
||||||
|
|
||||||
executable = os.path.basename(first_cmd_arg)
|
executable = os.path.basename(first_cmd_arg)
|
||||||
if first_cmd_arg and executable in modules and task['action'].get('warn', True):
|
if (first_cmd_arg and executable in modules
|
||||||
|
and task['action'].get('warn', True) and 'register' not in task):
|
||||||
errors.append(
|
errors.append(
|
||||||
Error(task["__line__"], description % (executable, modules[executable])))
|
Error(task["__line__"], description % (executable, modules[executable])))
|
||||||
|
|
||||||
@ -154,8 +155,10 @@ def check_command_has_changes(candidate, settings):
|
|||||||
if not errors:
|
if not errors:
|
||||||
for task in tasks:
|
for task in tasks:
|
||||||
if task["action"]["__ansible_module__"] in commands:
|
if task["action"]["__ansible_module__"] in commands:
|
||||||
if 'changed_when' not in task and 'when' not in task \
|
if ('changed_when' not in task and 'when' not in task
|
||||||
and 'creates' not in task['action'] and 'removes' not in task['action']:
|
and 'when' not in task['__ansible_action_meta__']
|
||||||
|
and 'creates' not in task['action']
|
||||||
|
and 'removes' not in task['action']):
|
||||||
errors.append(Error(task["__line__"], description))
|
errors.append(Error(task["__line__"], description))
|
||||||
|
|
||||||
return Result(candidate.path, errors)
|
return Result(candidate.path, errors)
|
||||||
|
@ -359,6 +359,7 @@ def _kv_to_dict(v):
|
|||||||
def normalize_task(task, filename, custom_modules=[]):
|
def normalize_task(task, filename, custom_modules=[]):
|
||||||
'''Ensures tasks have an action key and strings are converted to python objects'''
|
'''Ensures tasks have an action key and strings are converted to python objects'''
|
||||||
ansible_action_type = task.get('__ansible_action_type__', 'task')
|
ansible_action_type = task.get('__ansible_action_type__', 'task')
|
||||||
|
ansible_action_meta = task.get('__ansible_action_meta__', dict())
|
||||||
if '__ansible_action_type__' in task:
|
if '__ansible_action_type__' in task:
|
||||||
del(task['__ansible_action_type__'])
|
del(task['__ansible_action_type__'])
|
||||||
|
|
||||||
@ -397,6 +398,7 @@ def normalize_task(task, filename, custom_modules=[]):
|
|||||||
|
|
||||||
normalized[FILENAME_KEY] = filename
|
normalized[FILENAME_KEY] = filename
|
||||||
normalized['__ansible_action_type__'] = ansible_action_type
|
normalized['__ansible_action_type__'] = ansible_action_type
|
||||||
|
normalized['__ansible_action_meta__'] = ansible_action_meta
|
||||||
return normalized
|
return normalized
|
||||||
|
|
||||||
|
|
||||||
@ -432,9 +434,13 @@ def extract_from_list(blocks, candidates):
|
|||||||
results = list()
|
results = list()
|
||||||
for block in blocks:
|
for block in blocks:
|
||||||
for candidate in candidates:
|
for candidate in candidates:
|
||||||
|
delete_meta_keys = [candidate, '__line__', '__file__', '__ansible_action_type__']
|
||||||
if isinstance(block, dict) and candidate in block:
|
if isinstance(block, dict) and candidate in block:
|
||||||
if isinstance(block[candidate], list):
|
if isinstance(block[candidate], list):
|
||||||
results.extend(add_action_type(block[candidate], candidate))
|
meta_data = dict(block)
|
||||||
|
for key in delete_meta_keys:
|
||||||
|
del meta_data[key]
|
||||||
|
results.extend(add_action_type(block[candidate], candidate, meta_data))
|
||||||
elif block[candidate] is not None:
|
elif block[candidate] is not None:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"Key '%s' defined, but bad value: '%s'" %
|
"Key '%s' defined, but bad value: '%s'" %
|
||||||
@ -442,10 +448,12 @@ def extract_from_list(blocks, candidates):
|
|||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
||||||
def add_action_type(actions, action_type):
|
def add_action_type(actions, action_type, action_meta=None):
|
||||||
results = list()
|
results = list()
|
||||||
for action in actions:
|
for action in actions:
|
||||||
action['__ansible_action_type__'] = BLOCK_NAME_TO_ACTION_TYPE_MAP[action_type]
|
action['__ansible_action_type__'] = BLOCK_NAME_TO_ACTION_TYPE_MAP[action_type]
|
||||||
|
if action_meta:
|
||||||
|
action['__ansible_action_meta__'] = action_meta
|
||||||
results.append(action)
|
results.append(action)
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user