mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
refactors ios_config to use network_cli plugin (#20042)
* updates the ios_config module to use the network_cli plugin * updates the local action plugin to derive from network * add unit test cases for ios_config
This commit is contained in:
@@ -19,10 +19,9 @@
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible.plugins.action import ActionBase
|
||||
from ansible.plugins.action.net_config import ActionModule as NetActionModule
|
||||
from ansible.plugins.action.net_config import ActionModule as _ActionModule
|
||||
|
||||
class ActionModule(NetActionModule, ActionBase):
|
||||
class ActionModule(_ActionModule):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user