Playbooks 中的错误处理

Ansible 通常默认会确保检测模块和命令的返回码并且会快速失败 – 专注于一个错误除非你另作打算.

有时一条命令会返回 0 但那不是报错.有时命令不会总是报告它 ‘改变’ 了远程系统.本章节描述了如何将 Ansible 处理输出结果和错误处理的默认行为改变成你想要的.

忽略错误的命令

New in version 0.6.

通常情况下, 当出现失败时 Ansible 会停止在宿主机上执行.有时候,你会想要继续执行下去.为此你需要像这样编写任务:

  1. - name: this will not be counted as a failure
  2. command: /bin/false
  3. ignore_errors: yes

注意上面的系统仅仅处理那个特定的任务,所以当你在使用一个未定义的变量时, Ansible 仍然会报错,需要使用者进行处理.

控制对失败的定义

New in version 1.4.

假设一条命令的错误码毫无意义只有它的输出结果能告诉你什么出了问题,比如说字符串 “FAILED” 出现在输出结果中.

在 Ansible 1.4及之后的版本中提供了如下的方式来指定这样的特殊行为:

  1. - name: this command prints FAILED when it fails
  2. command: /usr/bin/example-command -x -y -z
  3. register: command_result
  4. failed_when: "'FAILED' in command_result.stderr"

在 Ansible 1.4 之前的版本能通过如下方式完成:

  1. - name: this command prints FAILED when it fails
  2. command: /usr/bin/example-command -x -y -z
  3. register: command_result
  4. ignore_errors: True
  5.  
  6. - name: fail the play if the previous command did not succeed
  7. fail: msg="the command failed"
  8. when: "'FAILED' in command_result.stderr"

覆写更改结果

New in version 1.3.

When a shell/command or other module runs it will typically report“changed” status based on whether it thinks it affected machine state.当一个 shell或命令或其他模块运行时,它们往往都会在它们认为其影响机器状态时报告 “changed”状态

  • 有时你可以通过返回码或是输出结果来知道它们其实并没有做出任何更改.你希望覆写结果的
  • “changed” 状态使它不会出现在输出的报告或不会触发其他处理程序:
  1. tasks:
  2.  
  3. - shell: /usr/bin/billybass --mode="take me to the river"
  4. register: bass_result
  5. changed_when: "bass_result.rc != 2"
  6.  
  7. # this will never report 'changed' status
  8. - shell: wall 'beep'
  9. changed_when: False

See also