781fd7099a
- Move legacy tests into a separate directory. - Reduce common dependencies between targets.
18 lines
1.4 KiB
YAML
18 lines
1.4 KiB
YAML
# This contain sample template execution tasks
|
|
---
|
|
- name: Test Save
|
|
cnos_save: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['username']}} password={{ hostvars[inventory_hostname]['password']}} deviceType={{ hostvars[inventory_hostname]['deviceType']}} outputfile=./results/cnos_save_{{ inventory_hostname }}_output.txt
|
|
with_items: "{{cnos_save_data1}}"
|
|
|
|
- name: Test Reset to factory
|
|
cnos_factory: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['username']}} password={{ hostvars[inventory_hostname]['password']}} deviceType={{ hostvars[inventory_hostname]['deviceType']}} outputfile=./results/cnos_save_{{ inventory_hostname }}_output.txt
|
|
with_items: "{{cnos_save_data2}}"
|
|
|
|
- name: Test Again save
|
|
cnos_save: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['username']}} password={{ hostvars[inventory_hostname]['password']}} deviceType={{ hostvars[inventory_hostname]['deviceType']}} outputfile=./results/cnos_save_{{ inventory_hostname }}_output.txt
|
|
with_items: "{{cnos_save_data3}}"
|
|
|
|
- name: Test Reload
|
|
cnos_reload: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['username']}} password={{ hostvars[inventory_hostname]['password']}} deviceType={{ hostvars[inventory_hostname]['deviceType']}} outputfile=./results/cnos_save_{{ inventory_hostname }}_output.txt
|
|
with_items: "{{cnos_save_data4}}"
|
|
# Completed file
|