mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
dbb452100a
* First set of CNOS network modules Two modules: cnos_vlan and cnos_command. First 2 of 17 CNOS modules * Revert "First set of CNOS network modules" This reverts commit 63da68b2a857e622b449f514050eed25fbcf0a35. * cnos_vlan module First of 17 CNOS modules * Modify playbook for cnos_vlan module testing * fix issue found by shippable in cnos.py * cnos_backup module * Fix Python3.5 compilation error * remove cnos_backup module from this PR * add aliases file so that testing of the cnos_vlan module will be skipped. * Use empty aliases file * utility scripts under module_utils changed to BSD license. * clean up PEP8 issues, add cnos_vlan tests * remove blank lines from yml files * remove more blank lines * remove even more blank lines * Revert "remove even more blank lines" This reverts commit bb3998661ce387260340bca39d5f146f5ec54f44. * re-submit last commit * fix blank lines in this file under parsing * fix yamllint errors in doc section of cnos_vlan * Fix errors reported by Sanity check using validate-modules * change test playbook to include tasks for all modules * fix additional pep8 errors * more fixes, plus fix for python3 * fix for empty options section, removed unnecessary documentation * fix up documentation section * Correct options capitalization * fix example section, add options * Fix example section of the documentation
15 lines
623 B
Text
15 lines
623 B
Text
# You have to paste this dummy information in /etc/ansible/hosts
|
|
# Notes:
|
|
# - Comments begin with the '#' character
|
|
# - Blank lines are ignored
|
|
# - Groups of hosts are delimited by [header] elements
|
|
# - You can enter hostnames or ip addresses
|
|
# - A hostname/ip can be a member of multiple groups
|
|
#
|
|
# In the /etc/ansible/hosts file u have to enter [cnos_vlan_sample] tag
|
|
# Following you should specify IP Adresses details
|
|
# Please change <username> and <password> with appropriate value for your switch.
|
|
|
|
[cnos_vlan_sample]
|
|
10.241.107.39 username=<username> password=<password> deviceType=g8272_cnos
|
|
|