mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 18:04:02 -07:00
Fix various junos errors (#23278)
This commit is contained in:
parent
0b8ca98c48
commit
e8538213fa
4 changed files with 7 additions and 7 deletions
|
@ -119,7 +119,7 @@ from functools import partial
|
|||
from ncclient.xml_ import new_ele, sub_ele, to_xml
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.junos import load
|
||||
from ansible.module_utils.junos import load_config
|
||||
from ansible.module_utils.six import iteritems
|
||||
|
||||
ROLES = ['operator', 'read-only', 'super-user', 'unauthorized']
|
||||
|
@ -242,7 +242,7 @@ def main():
|
|||
if module.params['purge']:
|
||||
kwargs['action'] = 'replace'
|
||||
|
||||
diff = load(module, ele, **kwargs)
|
||||
diff = load_config(module, ele, **kwargs)
|
||||
|
||||
if diff:
|
||||
result.update({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue