即使使用ignore_errors,Ansible任务也会失败

时间:2017-03-03 19:55:19

标签: ansible homebrew homebrew-cask

所以我是Ansible的新手,但我一直在研究,而且我找不到任何可以解释这个问题的文章。我已经创建了一个安装brew cask应用程序的角色,但是它会一直“失败”。在运行命令以检查应用程序是否已安装时。

这里的任务是:

- name: "Check for installed casks (Applications)"
  shell: brew cask list | grep {{ item }}
  register: installed_applications
  with_items: "{{ apps }}"
  when: apps is defined
  ignore_errors: yes

因此,根据我的理解,它将使用我的应用程序列表中的项目运行命令,因此示例命令将为brew cask list | grep keybase,然后将其映射到installed_applications

但是当我运行它时,我最终看到所有应用程序都失败了(没有安装)。这是详细模式中的错误:

failed: [localhost] (item=keybase) => {
    "changed": true,
    "cmd": "brew cask list | grep keybase",
    "delta": "0:00:00.792680",
    "end": "2017-03-03 19:41:05.500378",
    "failed": true,
    "invocation": {
        "module_args": {
            "_raw_params": "brew cask list | grep keybase",
            "_uses_shell": true,
            "chdir": null,
            "creates": null,
            "executable": null,
            "removes": null,
            "warn": false
        },
        "module_name": "command"
    },
    "item": "keybase",
    "rc": 1,
    "start": "2017-03-03 19:41:04.707698",
    "stderr": "",
    "stdout": "",
    "stdout_lines": [],
    "warnings": []
}

如果我手动运行命令,我只得到一个空白输出(应该这样),但是Ansible应该忽略错误,对吗?

1 个答案:

答案 0 :(得分:1)

您的shell任务被标记为失败,因为grep未找到匹配项时返回非零退出代码。
所以你得到rc: 1failed: true

但是说ignore_errors: yes你告诉Ansible:即使任务失败也会继续进行
因此任务为红色并标记为失败,但随后的任务将被执行。

如果您希望即使grep失败也要将任务设为绿色,请使用bash技巧或使用failed_when条件。您可以在SO上搜索[ansible] grepFor example