mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12: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:
@@ -25,7 +25,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = """
|
||||
---
|
||||
module: voss_command
|
||||
author: "Lindsay Hill (@LindsayHill)"
|
||||
@@ -48,7 +48,7 @@ options:
|
||||
until the condition is satisfied or 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"
|
||||
I(answer) and I(prompt). Common answers are 'y' or "\\r"
|
||||
(carriage return, must be double quotes). See examples.
|
||||
required: true
|
||||
wait_for:
|
||||
@@ -82,7 +82,7 @@ options:
|
||||
conditions, the interval indicates how long to wait before
|
||||
trying the command again.
|
||||
default: 1
|
||||
'''
|
||||
"""
|
||||
|
||||
EXAMPLES = r"""
|
||||
tasks:
|
||||
|
||||
Reference in New Issue
Block a user