gpt4 book ai didi

python - 如何使其仅在满足我的时间的强加条件时显示

转载 作者:行者123 更新时间:2023-12-04 10:38:29 24 4
gpt4 key购买 nike

我从下面的 ansible playbook 中摘录了一段简短的摘录,它只检查服务器上是否存在目录,当 playbook 没有被回答并关闭时,也就是说,如果它不存在,但是我面临着创建的困难调试消息,因为即使它被回答为 真假 ,显示消息,如何让它只显示when满足 my when 的强加条件,在这种情况下,如果目录不存在 .

---
- hosts: all
tasks:

- name: Ansible check directory exists.
stat:
path: /opt/Zabbix/HC/
register: result_dir

- meta: end_play
when: not result_dir.stat.exists
- debug:
msg: "Directory not exists"

最佳答案

可以将其放入 block .例如

    - block:
- debug:
msg: "Directory not exists. End of play."
- meta: end_play
when: not result.stat.exists

- debug:
msg: "Directory exists. Continue play."

关于python - 如何使其仅在满足我的时间的强加条件时显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60040606/

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