我搜索了有关如何停止执行 Ansible 任务而不会失败的示例。

一个简单的例子:

- name: check file
  stat: path={{some_path}}
  register: check_file_result

- name: if file exists, stop
  **fail**: msg="file exists, stopping"
  when: check_file_result.stat.exists

这在它停止执行时起作用,但由于大量红色 flavor 的文本而失败,可能会阻止整个剧本运行进一步的任务。有没有办法停止执行,就好像它以“OK”结束一样?

注意:解决方法是简单地添加“when:check_file_result.stat.exists == false”,但这扩展性很差。

最佳答案

如果您不想在 check_file_result.stat.exists 时执行多个任务,那么我可能会将所有这些任务封装在一个单独的文件中,然后有条件地将该文件封装为 include ,例如

- name: check file
  stat: path={{ some_path }}
  register: check_file_result

- include: file_ops.yml
  when: check_file_result.stat.exists

示例目录结构:
|- roles/
  |- foo
    |- tasks
      |- main.yml
      |- file_ops.yml
    |- vars
      |- main.yml

使用这种方法是 DRY :-)

关于break - 如何成功停止 Ansible 任务,而不是失败?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25185018/

10-13 07:49