diff options
author | Sagar Paul <sagpaul@redhat.com> | 2022-04-26 01:18:42 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 19:48:42 +0000 |
commit | 43c2ecba6a04cc121375a541d817343c33ebe235 (patch) | |
tree | a3fe0df5aaccdbd7b955241d7fe9de8f80795574 /plugins/terminal/vyos.py | |
parent | b834c87f13e3ec908bfcd79022404ddf71d6559e (diff) | |
download | vyos.vyos-43c2ecba6a04cc121375a541d817343c33ebe235.tar.gz vyos.vyos-43c2ecba6a04cc121375a541d817343c33ebe235.zip |
updated references of base plugins to netcommon (#232)
updated references of base plugins to netcommon
SUMMARY
Minimum required ansible.netcommon version is 2.5.1
Updated base plugin references to ansible.netcommon
ISSUE TYPE
Feature Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION
Reviewed-by: Nathaniel Case <this.is@nathanielca.se>
Diffstat (limited to 'plugins/terminal/vyos.py')
-rw-r--r-- | plugins/terminal/vyos.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/terminal/vyos.py b/plugins/terminal/vyos.py index 850e5283..ef036ac8 100644 --- a/plugins/terminal/vyos.py +++ b/plugins/terminal/vyos.py @@ -23,8 +23,10 @@ __metaclass__ = type import os import re -from ansible.plugins.terminal import TerminalBase from ansible.errors import AnsibleConnectionFailure +from ansible_collections.ansible.netcommon.plugins.plugin_utils.terminal_base import ( + TerminalBase, +) class TerminalModule(TerminalBase): |