mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c38bccb3c4
* Add ios_logging implementation module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix doc Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * integration test net_logging and ios_logging Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * modify the module code Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * modify the module code Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * change collection to aggregate * fix buffer size logic * fix pep8 issues
10 lines
363 B
YAML
10 lines
363 B
YAML
---
|
|
|
|
- include: "{{ role_path }}/tests/eos/basic.yaml"
|
|
when: hostvars[inventory_hostname]['ansible_network_os'] == 'eos'
|
|
|
|
- include: "{{ role_path }}/tests/vyos/basic.yaml"
|
|
when: hostvars[inventory_hostname]['ansible_network_os'] == 'vyos'
|
|
|
|
- include: "{{ role_path }}/tests/ios/basic.yaml"
|
|
when: hostvars[inventory_hostname]['ansible_network_os'] == 'ios'
|