fix networking *_command check_mode (#28407)

* Fix check_mode in nxos_command

* Fix check_mode for ios_command

* fix check_mode for iosxr_command

* Fix check_mode in vyos_command

* Fix check_mode in eos_command

* Fix check_mode in junos_config
pull/28521/head
Nathaniel Case 7 years ago committed by Chris Alfonso
parent 96abfde189
commit e1def05ba2

@ -163,12 +163,14 @@ def parse_commands(module, warnings):
transform = ComplexList(spec, module)
commands = transform(module.params['commands'])
for index, item in enumerate(commands):
if module.check_mode and not item['command'].startswith('show'):
warnings.append(
'Only show commands are supported when using check_mode, not '
'executing %s' % item['command']
)
if module.check_mode:
for item in list(commands):
if not item['command'].startswith('show'):
warnings.append(
'Only show commands are supported when using check_mode, not '
'executing %s' % item['command']
)
commands.remove(item)
return commands

@ -151,12 +151,13 @@ def parse_commands(module, warnings):
answer=dict()
), module)
commands = command(module.params['commands'])
for index, item in enumerate(commands):
for item in list(commands):
if module.check_mode and not item['command'].startswith('show'):
warnings.append(
'only show commands are supported when using check mode, not '
'executing `%s`' % item['command']
)
commands.remove(item)
elif item['command'].startswith('conf'):
module.fail_json(
msg='ios_command does not support running config mode '

@ -145,12 +145,13 @@ def parse_commands(module, warnings):
), module)
commands = command(module.params['commands'])
for index, item in enumerate(commands):
for item in list(commands):
if module.check_mode and not item['command'].startswith('show'):
warnings.append(
'only show commands are supported when using check mode, not '
'executing `%s`' % item['command']
)
commands.remove(item)
elif item['command'].startswith('conf'):
module.fail_json(
msg='iosxr_command does not support running config mode '

@ -314,6 +314,7 @@ def parse_commands(module, warnings):
'Only show commands are supported when using check_mode, not '
'executing %s' % command
)
continue
parts = command.split('|')
text = parts[0]

@ -181,15 +181,18 @@ def parse_commands(module, warnings):
commands = transform(module.params['commands'])
for index, item in enumerate(commands):
if module.check_mode and not item['command'].startswith('show'):
warnings.append(
'Only show commands are supported when using check_mode, not '
'executing %s' % item['command']
)
if module.check_mode:
for item in list(commands):
if not item['command'].startswith('show'):
warnings.append(
'Only show commands are supported when using check_mode, not '
'executing %s' % item['command']
)
commands.remove(item)
return commands
def to_cli(obj):
cmd = obj['command']
if obj.get('output') == 'json':

@ -155,14 +155,16 @@ def parse_commands(module, warnings):
answer=dict(),
), module)
commands = command(module.params['commands'])
items = []
for index, cmd in enumerate(commands):
if module.check_mode and not cmd['command'].startswith('show'):
for item in commands:
if module.check_mode and not item['command'].startswith('show'):
warnings.append('only show commands are supported when using '
'check mode, not executing `%s`' % cmd['command'])
commands[index] = module.jsonify(cmd)
'check mode, not executing `%s`' % item['command'])
else:
items.append(module.jsonify(item))
return commands
return items
def main():

Loading…
Cancel
Save