gpt4 book ai didi

ansible - 将变量记录到 ansible 主机上的日志文件中

转载 作者:行者123 更新时间:2023-12-02 21:17:58 25 4
gpt4 key购买 nike

我有一个注册三个变量的剧本。我想生成 list 中所有主机上这三个变量的 CSV 报告。

This所以答案建议使用:

- local_action:复制 content={{ foo_result }} dest=/path/to/destination/file

但这不会附加到 csv 文件中。另外,在这种情况下,我必须手动使用逗号分隔符进行撰写。

关于如何将变量记录(追加)到本地文件有什么想法吗?

最佳答案

如果您想在文件中追加一行而不是替换其内容,那么这可能最适合 lineinfile模块并利用该模块的功能在文件末尾插入一行。

与您使用的副本任务等效的任务如下:

- name: log foo_result to file
lineinfile:
line: "{{ foo_result }}"
insertafter: EOF
dest: /path/to/destination/file
delegate_to: 127.0.0.1

请注意,我用长 watch 示 delegating tasks本地而不是 local_action。我个人认为语法读起来更清晰,但如果您更喜欢 local_action 更紧凑的语法,您可以轻松使用以下内容:

- local_action: lineinfile line={{ foo_result }} insertafter=EOF dest=/path/to/destination/file

关于ansible - 将变量记录到 ansible 主机上的日志文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33949033/

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