gpt4 book ai didi

如果 Windows 中不存在目录,则 Ansible 会导致 playbook 失败

转载 作者:行者123 更新时间:2023-12-05 06:55:16 25 4
gpt4 key购买 nike

如果 Windows 中的目录不存在,我如何使 playbook 失败

 - name: Obtain information about a folder
win_stat:
path: C:\temp
register: file_info

- debug:
var: file_info

最佳答案

您可以使用 failed_when任务本身。

然后可以根据stat.exists判断文件夹是否存在.

- name: Obtain information about a folder
win_stat:
path: C:\temp
register: file_info
failed_when: not file_info.stat.exists

关于如果 Windows 中不存在目录,则 Ansible 会导致 playbook 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65414614/

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