标签: ansible
我在我的项目中使用ansible,我想在上一个命令返回一些值时执行命令。就像我正在检查根文件夹一样,如果发现的文件超过10个,请执行下一个命令。
我正在尝试以下面的方式使用ansbile。请帮忙
{{1}}
答案 0 :(得分:1)
when是Jinja2表达式。它使用Jinja2 comparison运算符。
when
另请注意,您尝试比较ifcount,而要比较的实际值为ifcount.stdout。
ifcount
ifcount.stdout
尝试:when: ifcount.stdout | int >= 15
when: ifcount.stdout | int >= 15