059a0d07a4
* Initial commit of cnos_condition_command * fix pep8 error of line too long * fix pep8 tab/space issue * Move roles to integration/roles directory and remove aliases file. * Update module short description * Change module directory name to Lenovo * change import cnos statement
7 lines
558 B
YAML
7 lines
558 B
YAML
# This contain sample command execution tasks
|
|
---
|
|
|
|
- name: Run a command
|
|
cnos_conditional_command: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['username']}} password={{ hostvars[inventory_hostname]['password']}} deviceType={{ hostvars[inventory_hostname]['deviceType']}} condition={{ hostvars[inventory_hostname]['condition'] }} flag='{{item.flag}}' clicommand='{{item.clicommand}}' outputfile=./results/cnos_conditional_command_{{ inventory_hostname }}_output.txt
|
|
with_items: "{{conditional_command_data1}}"
|
|
# Completed file
|