gpt4 book ai didi

linux - Ansible Cisco 输出创建空文件

转载 作者:太空宇宙 更新时间:2023-11-04 05:45:48 24 4
gpt4 key购买 nike

只有第一个命令的输出才会写入文件。

如何让它将所有命令的输出写入文件?

---

- name: run show commands
hosts: nexus1
gather_facts: False


tasks:
- name: run show commands on nexus
nxos_command:
commands:
- show hostname
- show ip route
- show interface
- show ip interface vrf all
- show hsrp
register: output

- name: Copy to server
copy:
content: "{{ output.stdout[0] }}"
dest: "/home/CiscoOutPut/{{ inventory_hostname }}.txt"

最佳答案

您只是要求第一个命令的输出。 output.stdout 是一个列表,每个命令的输出有一项。当请求 output.stdout[0] 时,您仅请求第一个结果。

如果您想将所有命令的输出写入文件,则类似于:

  - name: Copy to server
copy:
content: "{{ '\n'.join(output.stdout) }}"
dest: "/home/CiscoOutPut/{{ inventory_hostname }}.txt"

关于linux - Ansible Cisco 输出创建空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59230241/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com