mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
7 lines
428 B
YAML
7 lines
428 B
YAML
|
# This contain sample show rnunning config tasks
|
||
|
---
|
||
|
- name: Test Running Configurations
|
||
|
cnos_showrun: host={{ inventory_hostname }} username={{ hostvars[inventory_hostname]['ansible_ssh_user']}} password={{ hostvars[inventory_hostname]['ansible_ssh_pass']}} enablePassword='{{item.enablePassword}}' outputfile=./results/cnos_showrun_{{ inventory_hostname }}_output.txt
|
||
|
with_items: "{{test_showrun_data}}"
|
||
|
# Completed file
|