在ansible中,我正在做很多事情:
- name: Check if [someFile] exists on host
stat: path=[someFile]
register: someFile
- fail: msg="[someFile] not found"
when: someFile.stat.exists == False
我希望能够更简洁地表达它。像这样:
- fail_on_missing_file:
path: [someFile]
实现此目标的最佳方法是什么?
最佳答案
您可以使用failed_when
做您想要做的事情:
- stat: path=/path/to/some/file
register: someFile
failed_when: not someFile.stat.exists
关于ansible - 简化ansible文件检查?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26056868/