gpt4 book ai didi

ansible - 是否有 with_fileglob 可以在 ansible 中远程工作?

转载 作者:行者123 更新时间:2023-12-03 10:57:43 27 4
gpt4 key购买 nike

有没有with_fileglob在ansible中远程工作吗?

主要是我确实想使用与 with_fileglob 类似的东西但这会将远程/目标机器上的文件全局化,而不是在运行 ansible 的机器上。

最佳答案

使用 find module过滤文件,然后处理结果列表:

- name: Get files on remote machine
find:
paths: /path/on/remote
register: my_find

- debug:
var: item.path
with_items: "{{ my_find.files }}"

关于ansible - 是否有 with_fileglob 可以在 ansible 中远程工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33543551/

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