gpt4 book ai didi

ansible - 如何检查文件是否存在于ansible windows中?

转载 作者:行者123 更新时间:2023-12-04 14:40:16 26 4
gpt4 key购买 nike

我在 Windows 上使用 Ansible,我必须检查 中是否存在文件C:\温度 .
如果该文件不存在,那么我必须跳过该任务。我正在尝试使用 win_stat 模块,这就是我所拥有的不起作用:

- name: Check that the ABC.txt exists
win_stat:
path: 'C:\ABC.txt '

- name: Create DEF.txt file if ABC.txt exists
win_file:
path: 'C:\DEF.txt'
state: touch
when: stat_file.stat.exists == True

最佳答案

当我尝试上面的答案时,它给了我一个语法错误,而我不得不这样写:

- name: Check that the ABC.txt exists
win_stat:
path: 'C:\ABC.txt'
register: stat_file

- name: Create DEF.txt file if ABC.txt exists
win_file:
path: 'C:\DEF.txt'
state: touch
when: stat_file.stat.exists == True

关于ansible - 如何检查文件是否存在于ansible windows中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43248578/

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