mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 01:55:51 +00:00
Fix imports and installing dependencies in CI, part 1 (#41)
* Fix ovirt collection name (ovirt.ovirt_collection, not ovirt.ovirt). * Fix kubernetes module_utils references. * Fix broken f5 imports on community.general side. The imports in that collection are still broken and will still cause failures. * Fix Cisco ACI and MSO modules imports. * Fix check_point.mgmt dependency, fix imports. * Fix fortimanager imports. * Fix cisco intersight imports. * Fix ovirt module docs fragments. * Fix usage of _ in unit tests to avoid sanity failures. * Fix Cisco module docs fragments. * Fix netapp.ontap module docs fragment name. * Fix documentation. * Fix some boilerplate (the ones not mentioned in ignore.txt).
This commit is contained in:
parent
927d91f35f
commit
25394eeafb
95 changed files with 349 additions and 343 deletions
|
|
@ -12,7 +12,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = """
|
||||
---
|
||||
module: eric_eccli_command
|
||||
author: Ericsson IPOS OAM team (@itercheng)
|
||||
|
|
@ -34,7 +34,7 @@ options:
|
|||
the number of retries has expired. If a command sent to the
|
||||
device requires answering a prompt, it is possible to pass
|
||||
a dict containing I(command), I(answer) and I(prompt).
|
||||
Common answers are 'y' or "\r" (carriage return, must be
|
||||
Common answers are 'y' or "\\r" (carriage return, must be
|
||||
double quotes). See examples.
|
||||
type: list
|
||||
required: true
|
||||
|
|
@ -80,7 +80,7 @@ notes:
|
|||
- For more information on using Ansible to manage Ericsson devices see the Ericsson documents.
|
||||
- "Starting with Ansible 2.5 we recommend using C(connection: network_cli)."
|
||||
- For more information please see the L(ERIC_ECCLI Platform Options guide,../network/user_guide/platform_eric_eccli.html).
|
||||
'''
|
||||
"""
|
||||
|
||||
EXAMPLES = r"""
|
||||
tasks:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue