7435e115e0
* ACI: Various changes to module documentation and guide This PR includes: - We moved the object class information to the notes - Add version information to guide chapters - Add generic note to modules with reference to ACI guide - Reference known issues in aci_rest documentation - Remove module_utils function docs from modules - Indicate which parameters are not required for querying all objects - Added missing RETURN information * Fix copyright strings * Remove aci_domain_to_encap_pool.py for v2.5 * More updates * PEP8 fix * Improve listings of parameters/return values
24 lines
799 B
YAML
24 lines
799 B
YAML
# Test code for the ACI modules
|
|
# Copyright: (c) 2018, Dag Wieers (@dagwieers) <dag@wieers.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- name: Test that we have an ACI APIC host, ACI username and ACI password
|
|
fail:
|
|
msg: 'Please define the following variables: aci_hostname, aci_username and aci_password.'
|
|
when: aci_hostname is not defined or aci_username is not defined or aci_password is not defined
|
|
|
|
- include_tasks: phys.yml
|
|
when: phys is not defined or phys
|
|
|
|
- include_tasks: l2dom.yml
|
|
when: l2dom is not defined or l2dom
|
|
|
|
- include_tasks: l3dom.yml
|
|
when: l3dom is not defined or l3dom
|
|
|
|
- include_tasks: fc.yml
|
|
when: fc is not defined or fc
|
|
|
|
- include_tasks: vmm-vmware.yml
|
|
when: vmm_vmware is not defined or vmm_vmware
|