Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: 3.11
python-version: 3.12
- name: Install ansible-lint
run: python -m pip install ansible-lint
- name: Run ansible-lint
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- name: Checkout the repo
uses: actions/checkout@v5
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
strategy:
matrix:
ansible:
- stable-2.15
- stable-2.16
- stable-2.17
- stable-2.18
python-version:
- "3.11"
- "3.12"
steps:
- name: Checkout the repo
uses: actions/checkout@v5
Expand Down Expand Up @@ -111,9 +111,9 @@ jobs:
strategy:
matrix:
ansible:
- stable-2.15
- stable-2.16
python-version:
- 3.11
- 3.12
netscaler-version:
- 13.1-59.19
- 14.1-43.50
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# Collections must specify a minimum required ansible version to upload
# to galaxy
requires_ansible: '>=2.15.0'
requires_ansible: '>=2.16.0'
# Content that Ansible needs to load from another location or that has
# been deprecated/removed
# plugin_routing:
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/routerdynamicrouting_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,25 +81,25 @@
RETURN = r"""
---
changed:
description: Always false for info modules as they do not modify state
description: Always false for info modules as they do not modify state.
returned: always
type: bool
sample: false
info:
description: Information retrieved from the dynamic routing configuration
description: Information retrieved from the dynamic routing configuration.
returned: success
type: dict
sample: {
"commandstring": "show ip bgp summary",
"response": "router response data here"
}
failed:
description: Indicates if the module failed or not
description: Indicates if the module failed or not.
returned: always
type: bool
sample: false
loglines:
description: list of logged messages by the module
description: list of logged messages by the module.
returned: always
type: list
sample: ['message 1', 'message 2']
Expand Down
Loading
Loading