Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netmiko.exceptions #4

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/modules/ale_aos_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# anything the license permits.
#

from netmiko.ssh_exception import *
from netmiko.exceptions import *
from netmiko import ConnectHandler
from ansible.module_utils.basic import AnsibleModule
ANSIBLE_METADATA = {'metadata_version': '1.2',
Expand All @@ -42,7 +42,7 @@
- Connect to an OmniSwitch device and send a list of commands.
It can search for a string.
requirements:
- netmiko >= 3.4.0
- netmiko >= 4.0.0
options:
host:
description:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ale_aos_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from difflib import Differ
from pathlib import Path
from datetime import datetime
from netmiko.ssh_exception import *
from netmiko.exceptions import *
from netmiko import ConnectHandler
from ansible.module_utils.basic import AnsibleModule
ANSIBLE_METADATA = {'metadata_version': '1.2',
Expand All @@ -45,7 +45,7 @@
- Connect to an OmniSwitch device and send configurations commands.
It can take commands from a file or a commands list.
requirements:
- netmiko >= 3.4.0
- netmiko >= 4.0.0
options:
host:
description:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ale_aos_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# anything the license permits.
#

from netmiko.ssh_exception import *
from netmiko.exceptions import *
from netmiko import ConnectHandler
from ansible.module_utils.basic import AnsibleModule
from re import findall
Expand All @@ -43,7 +43,7 @@
- Get device informations using getters selector and return a
dictionary formatted output.
requirements:
- netmiko >= 3.4.0
- netmiko >= 4.0.0
options:
host:
description:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ale_aos_ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# anything the license permits.
#

from netmiko.ssh_exception import *
from netmiko.exceptions import *
from netmiko import ConnectHandler
from ansible.module_utils.basic import AnsibleModule
ANSIBLE_METADATA = {'metadata_version': '1.2',
Expand All @@ -42,7 +42,7 @@
- Try to connect to an OmniSwitch device. The module checks to see is the
check_string is present in the output returned by find_prompt().
requirements:
- netmiko >= 3.4.0
- netmiko >= 4.0.0
options:
host:
description:
Expand Down