gpt4 book ai didi

Ansible fileglob : unable to find . ..在预期路径中

转载 作者:行者123 更新时间:2023-12-01 22:25:27 26 4
gpt4 key购买 nike

我正在尝试使用ansible删除目录中的所有文件,同时保留目录。为此,我在任务中使用 with_fileglob 键将所有文件作为 item 变量从该目录中获取。我创建了一个最小的示例来显示我的问题:

Vagrant 文件:

Vagrant.configure("2") do |config|
config.vm.box = "centos/7"

config.vm.provision :ansible do |ansible|
ansible.limit = "all"
ansible.playbook = "local.yml"
end
end

本地.yml:

- name: Test
hosts: all
become: true
tasks:
- name: Test debug
debug:
msg: "{{ item }}"
with_fileglob:
- "/vagrant/*"

我希望获得/vagrant 目录中每个文件的调试消息 - 因为这是通过 Vagrant 与虚拟机同步的目录,所以我应该获得 Vagrantfile 和 local.yml 的消息。相反,我收到以下令人困惑的警告:

PLAY [Test] ********************************************************************

TASK [Gathering Facts] *********************************************************
ok: [default]

TASK [Test debug] **************************************************************
[WARNING]: Unable to find '/vagrant' in expected paths (use -vvvvv to see
paths)


PLAY RECAP *********************************************************************
default : ok=1 changed=0 unreachable=0 failed=0

这里指的是哪些预期路径?我已经尝试过使用多个文件球,但它们都以这种方式失败,我错过了什么?

最佳答案

Ansible 查找插件在本地计算机(启动 Ansible 的计算机)上执行,而不是在远程计算机上执行。

https://docs.ansible.com/ansible/latest/plugins/lookup.html

Lookup plugins allow Ansible to access data from outside sources. This can include reading the filesystem in addition to contacting external datastores and services. Like all templating, these plugins are evaluated on the Ansible control machine, not on the target/remote.

关于Ansible fileglob : unable to find . ..在预期路径中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55621257/

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