Refer to the exhibit.
- hosts: CISCO_ROUTER_01
gather_facts: true
connection: network_cli
tasks:
- name: show conf
ios_command:
commands:
- show running-config
register: config
- name: save output to /etc/ansible/configs
copy:
content: "{{ config.stdout[0] }}"
dest: "etc/ansible/configs/command_{{ router_hostname }}.txt
What is the result of executing this Ansible playbook?
WARNING
the answers are mixed, do not specify in the comment number or the letter of the answer
please write answer#A instead A, answer#B instead B...