mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
d3e48a51f5
commit
b74300b657
1 changed files with 5 additions and 2 deletions
|
@ -207,6 +207,9 @@ def get_value(arg, config, module):
|
||||||
def get_existing(module, args):
|
def get_existing(module, args):
|
||||||
existing = {}
|
existing = {}
|
||||||
netcfg = CustomNetworkConfig(indent=2, contents=get_config(module))
|
netcfg = CustomNetworkConfig(indent=2, contents=get_config(module))
|
||||||
|
if module.params['interface'].startswith('loopback') or module.params['interface'].startswith('port-channel'):
|
||||||
|
parents = ['interface {0}'.format(module.params['interface'])]
|
||||||
|
else:
|
||||||
parents = ['interface {0}'.format(module.params['interface'].capitalize())]
|
parents = ['interface {0}'.format(module.params['interface'].capitalize())]
|
||||||
config = netcfg.get_section(parents)
|
config = netcfg.get_section(parents)
|
||||||
if 'ospf' in config:
|
if 'ospf' in config:
|
||||||
|
@ -390,7 +393,7 @@ def main():
|
||||||
'message_digest_password']],
|
'message_digest_password']],
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
|
||||||
if not module.params['interface'].startswith('loopback'):
|
if not module.params['interface'].startswith('loopback') and not module.params['interface'].startswith('port-channel'):
|
||||||
module.params['interface'] = module.params['interface'].capitalize()
|
module.params['interface'] = module.params['interface'].capitalize()
|
||||||
|
|
||||||
warnings = list()
|
warnings = list()
|
||||||
|
|
Loading…
Reference in a new issue