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

fix for ansible issue-152 #154

Merged
merged 2 commits into from
Nov 9, 2023
Merged
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
9 changes: 9 additions & 0 deletions changelogs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Ansible Network Collection for Dell EMC SmartFabric OS10 Release Notes

.. contents:: Topics

v1.2.3
======

Bugfixes
--------

- Fixed issue in os10.py for show tech-support command fail in version from 2.10 to 2.15(https://github.com/ansible-collections/dellemc.os10/issues/152)


v1.2.2
======

Expand Down
10 changes: 10 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,13 @@ releases:

that have been added after the release of ``dellemc.os10`` 1.2.1.'
release_date: '2023-10-12'
1.2.3:
changes:
bugfixes:
- Fixed issue in os10.py for show tech-support command fail in version from 2.10 to 2.15 (https://github.com/ansible-collections/dellemc.os10/issues/152)
release_summary: 'This is the bug fix of the ``dellemc.os10`` collection.

This changelog contains all changes to the modules in this collection

that have been added after the release of ``dellemc.os10`` 1.2.2.'
release_date: '2023-11-09'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: os10
namespace: dellemc
readme: README.md
tags: [dell, dellemc, os10, emc, networking]
version: 1.2.2
version: 1.2.3
repository: https://github.com/ansible-collections/dellemc.os10
documentation: https://github.com/ansible-collections/dellemc.os10/tree/master/docs
homepage: https://github.com/ansible-collections/dellemc.os10
Expand Down
2 changes: 1 addition & 1 deletion plugins/terminal/os10.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TerminalModule(TerminalBase):
re.compile(br"invalid input", re.I),
re.compile(br"(?:incomplete|ambiguous) command", re.I),
re.compile(br"connection timed out", re.I),
re.compile(br"[^\r\n]+ not found", re.I),
re.compile(br"% Error(.+?)not found", re.I),
re.compile(br"'[^']' +returned error code: ?\d+"),
]

Expand Down
Loading